-- MySQL dump 10.19  Distrib 10.3.35-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: lanternrealty_lantern
-- ------------------------------------------------------
-- Server version	10.3.35-MariaDB-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES 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 `lrwp_actionscheduler_actions`
--

DROP TABLE IF EXISTS `lrwp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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 DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime 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 DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime 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`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=722 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_actionscheduler_actions`
--

LOCK TABLES `lrwp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `lrwp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `lrwp_actionscheduler_actions` VALUES (721,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[48]','O:28:\"ActionScheduler_NullSchedule\":0:{}',3,1,'2022-06-23 23:58:19','2022-06-23 23:58:19',0,NULL);
/*!40000 ALTER TABLE `lrwp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_actionscheduler_claims`
--

DROP TABLE IF EXISTS `lrwp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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=733179 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_actionscheduler_claims`
--

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

--
-- Table structure for table `lrwp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `lrwp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_actionscheduler_groups`
--

LOCK TABLES `lrwp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `lrwp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `lrwp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wpforms'),(3,'wp_mail_smtp');
/*!40000 ALTER TABLE `lrwp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `lrwp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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 DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime 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=275 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_actionscheduler_logs`
--

LOCK TABLES `lrwp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `lrwp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `lrwp_actionscheduler_logs` VALUES (274,721,'action complete via WP Cron','2022-06-23 23:58:19','2022-06-23 23:58:19'),(273,721,'action started via WP Cron','2022-06-23 23:58:19','2022-06-23 23:58:19'),(272,721,'action created','2022-06-23 23:58:14','2022-06-23 23:58:14');
/*!40000 ALTER TABLE `lrwp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_commentmeta`
--

DROP TABLE IF EXISTS `lrwp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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 AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_commentmeta`
--

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

--
-- Table structure for table `lrwp_comments`
--

DROP TABLE IF EXISTS `lrwp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_comments`
--

LOCK TABLES `lrwp_comments` WRITE;
/*!40000 ALTER TABLE `lrwp_comments` DISABLE KEYS */;
INSERT INTO `lrwp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-08-20 00:26:23','2018-08-20 00:26:23','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,'post-trashed','','comment',0,0),(2,1,'AffiliateLabz','comments@affiliatelabz.com','https://affiliatelabz.com/special/?source=lantern-realty.com','62.171.135.115','2020-02-16 02:00:09','2020-02-16 02:00:09','Great content! Super high-quality! Keep it up! :)',0,'post-trashed','Mozilla/5.0 (compatible; AffiliateLabz/1.0; +https://affiliatelabz.com/)','comment',0,0),(3,1,'Brianpauck','sugraem_demo_mail@meta.ua','','178.159.37.134','2020-03-26 19:33:19','2020-03-26 19:33:19','I enjoy this website - its so usefull and helpfull.',0,'post-trashed','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','comment',0,0),(4,1,'Brianpauck','sugraem_demo_mail@meta.ua','','178.159.37.134','2020-04-06 06:01:16','2020-04-06 06:01:16','Great internet site! It looks very professional! Sustain the great job!',0,'post-trashed','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','comment',0,0),(5,1,'JamesAbils','southnoller_lomliw9@yahoo.com','','178.159.37.134','2020-04-25 18:09:01','2020-04-25 18:09:01','Thank you so much! It is an fantastic webpage.',0,'post-trashed','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','comment',0,0);
/*!40000 ALTER TABLE `lrwp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_e_events`
--

DROP TABLE IF EXISTS `lrwp_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_e_events`
--

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

--
-- Table structure for table `lrwp_erp_acct_bill_account_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_bill_account_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_bill_account_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `bill_no` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_bill_account_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_bill_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_bill_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_bill_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_bill_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_bills`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_bills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `vendor_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_bills`
--

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

--
-- Table structure for table `lrwp_erp_acct_cash_at_banks`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_cash_at_banks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_cash_at_banks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ledger_id` int(11) DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `balance` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_cash_at_banks`
--

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

--
-- Table structure for table `lrwp_erp_acct_chart_of_accounts`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_chart_of_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_chart_of_accounts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_chart_of_accounts`
--

LOCK TABLES `lrwp_erp_acct_chart_of_accounts` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_chart_of_accounts` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_chart_of_accounts` VALUES (1,'Asset','asset',NULL,NULL,NULL,NULL),(2,'Liability','liability',NULL,NULL,NULL,NULL),(3,'Equity','equity',NULL,NULL,NULL,NULL),(4,'Income','income',NULL,NULL,NULL,NULL),(5,'Expense','expense',NULL,NULL,NULL,NULL),(6,'Asset & Liability','asset_liability',NULL,NULL,NULL,NULL),(7,'Bank','bank',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_chart_of_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_currency_info`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_currency_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_currency_info` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sign` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=163 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_currency_info`
--

LOCK TABLES `lrwp_erp_acct_currency_info` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_currency_info` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_currency_info` VALUES (1,'AED','د.إ',NULL,NULL,NULL,NULL),(2,'AFN','؋',NULL,NULL,NULL,NULL),(3,'ALL','L',NULL,NULL,NULL,NULL),(4,'AMD','AMD',NULL,NULL,NULL,NULL),(5,'ANG','ƒ',NULL,NULL,NULL,NULL),(6,'AOA','Kz',NULL,NULL,NULL,NULL),(7,'ARS','$',NULL,NULL,NULL,NULL),(8,'AUD','$',NULL,NULL,NULL,NULL),(9,'AWG','ƒ',NULL,NULL,NULL,NULL),(10,'AZN','₼',NULL,NULL,NULL,NULL),(11,'BAM','KM',NULL,NULL,NULL,NULL),(12,'BBD','$',NULL,NULL,NULL,NULL),(13,'BDT','৳',NULL,NULL,NULL,NULL),(14,'BGN','лв',NULL,NULL,NULL,NULL),(15,'BHD','.د.ب',NULL,NULL,NULL,NULL),(16,'BIF','Fr',NULL,NULL,NULL,NULL),(17,'BMD','$',NULL,NULL,NULL,NULL),(18,'BND','$',NULL,NULL,NULL,NULL),(19,'BOB','Bs.',NULL,NULL,NULL,NULL),(20,'BRL','R$',NULL,NULL,NULL,NULL),(21,'BSD','$',NULL,NULL,NULL,NULL),(22,'BTN','Nu.',NULL,NULL,NULL,NULL),(23,'BWP','P',NULL,NULL,NULL,NULL),(24,'BYN','Br',NULL,NULL,NULL,NULL),(25,'BYR','Br',NULL,NULL,NULL,NULL),(26,'BZD','$',NULL,NULL,NULL,NULL),(27,'CAD','$',NULL,NULL,NULL,NULL),(28,'CDF','Fr',NULL,NULL,NULL,NULL),(29,'CHF','Fr',NULL,NULL,NULL,NULL),(30,'CLP','$',NULL,NULL,NULL,NULL),(31,'CNY','¥',NULL,NULL,NULL,NULL),(32,'COP','$',NULL,NULL,NULL,NULL),(33,'CRC','₡',NULL,NULL,NULL,NULL),(34,'CUC','$',NULL,NULL,NULL,NULL),(35,'CUP','$',NULL,NULL,NULL,NULL),(36,'CVE','$',NULL,NULL,NULL,NULL),(37,'CZK','Kč',NULL,NULL,NULL,NULL),(38,'DJF','Fr',NULL,NULL,NULL,NULL),(39,'DKK','kr',NULL,NULL,NULL,NULL),(40,'DOP','$',NULL,NULL,NULL,NULL),(41,'DZD','د.ج',NULL,NULL,NULL,NULL),(42,'EGP','£',NULL,NULL,NULL,NULL),(43,'ERN','Nfk',NULL,NULL,NULL,NULL),(44,'ETB','Br',NULL,NULL,NULL,NULL),(45,'EUR','€',NULL,NULL,NULL,NULL),(46,'FJD','$',NULL,NULL,NULL,NULL),(47,'FKP','£',NULL,NULL,NULL,NULL),(48,'GBP','£',NULL,NULL,NULL,NULL),(49,'GEL','GEL',NULL,NULL,NULL,NULL),(50,'GGP','£',NULL,NULL,NULL,NULL),(51,'GHS','₵',NULL,NULL,NULL,NULL),(52,'GIP','£',NULL,NULL,NULL,NULL),(53,'GMD','D',NULL,NULL,NULL,NULL),(54,'GNF','Fr',NULL,NULL,NULL,NULL),(55,'GTQ','Q',NULL,NULL,NULL,NULL),(56,'GYD','$',NULL,NULL,NULL,NULL),(57,'HKD','$',NULL,NULL,NULL,NULL),(58,'HNL','L',NULL,NULL,NULL,NULL),(59,'HRK','kn',NULL,NULL,NULL,NULL),(60,'HTG','G',NULL,NULL,NULL,NULL),(61,'HUF','Ft',NULL,NULL,NULL,NULL),(62,'IDR','Rp',NULL,NULL,NULL,NULL),(63,'ILS','₪',NULL,NULL,NULL,NULL),(64,'IMP','£',NULL,NULL,NULL,NULL),(65,'INR','₹',NULL,NULL,NULL,NULL),(66,'IQD','ع.د',NULL,NULL,NULL,NULL),(67,'IRR','﷼',NULL,NULL,NULL,NULL),(68,'ISK','kr',NULL,NULL,NULL,NULL),(69,'JEP','£',NULL,NULL,NULL,NULL),(70,'JMD','$',NULL,NULL,NULL,NULL),(71,'JOD','د.ا',NULL,NULL,NULL,NULL),(72,'JPY','¥',NULL,NULL,NULL,NULL),(73,'KES','Sh',NULL,NULL,NULL,NULL),(74,'KGS','с',NULL,NULL,NULL,NULL),(75,'KHR','៛',NULL,NULL,NULL,NULL),(76,'KMF','Fr',NULL,NULL,NULL,NULL),(77,'KPW','₩',NULL,NULL,NULL,NULL),(78,'KRW','₩',NULL,NULL,NULL,NULL),(79,'KWD','د.ك',NULL,NULL,NULL,NULL),(80,'KYD','$',NULL,NULL,NULL,NULL),(81,'KZT','KZT',NULL,NULL,NULL,NULL),(82,'LAK','₭',NULL,NULL,NULL,NULL),(83,'LBP','ل.ل',NULL,NULL,NULL,NULL),(84,'LKR','Rs',NULL,NULL,NULL,NULL),(85,'LRD','$',NULL,NULL,NULL,NULL),(86,'LSL','L',NULL,NULL,NULL,NULL),(87,'LYD','ل.د',NULL,NULL,NULL,NULL),(88,'MAD','د.م.',NULL,NULL,NULL,NULL),(89,'MDL','L',NULL,NULL,NULL,NULL),(90,'MGA','Ar',NULL,NULL,NULL,NULL),(91,'MKD','ден',NULL,NULL,NULL,NULL),(92,'MMK','Ks',NULL,NULL,NULL,NULL),(93,'MNT','₮',NULL,NULL,NULL,NULL),(94,'MOP','P',NULL,NULL,NULL,NULL),(95,'MRO','UM',NULL,NULL,NULL,NULL),(96,'MUR','₨',NULL,NULL,NULL,NULL),(97,'MVR','MVR',NULL,NULL,NULL,NULL),(98,'MWK','MK',NULL,NULL,NULL,NULL),(99,'MXN','$',NULL,NULL,NULL,NULL),(100,'MYR','RM',NULL,NULL,NULL,NULL),(101,'MZN','MT',NULL,NULL,NULL,NULL),(102,'NAD','$',NULL,NULL,NULL,NULL),(103,'NGN','₦',NULL,NULL,NULL,NULL),(104,'NIO','C$',NULL,NULL,NULL,NULL),(105,'NOK','kr',NULL,NULL,NULL,NULL),(106,'NPR','₨',NULL,NULL,NULL,NULL),(107,'NZD','$',NULL,NULL,NULL,NULL),(108,'OMR','ر.ع.',NULL,NULL,NULL,NULL),(109,'PAB','B/.',NULL,NULL,NULL,NULL),(110,'PEN','S/.',NULL,NULL,NULL,NULL),(111,'PGK','K',NULL,NULL,NULL,NULL),(112,'PHP','₱',NULL,NULL,NULL,NULL),(113,'PKR','₨',NULL,NULL,NULL,NULL),(114,'PLN','zł',NULL,NULL,NULL,NULL),(115,'PRB','р.',NULL,NULL,NULL,NULL),(116,'PYG','₲',NULL,NULL,NULL,NULL),(117,'QAR','ر.ق',NULL,NULL,NULL,NULL),(118,'RON','lei',NULL,NULL,NULL,NULL),(119,'RSD','дин',NULL,NULL,NULL,NULL),(120,'RUB','₽',NULL,NULL,NULL,NULL),(121,'RWF','Fr',NULL,NULL,NULL,NULL),(122,'SAR','ر.س',NULL,NULL,NULL,NULL),(123,'SBD','$',NULL,NULL,NULL,NULL),(124,'SCR','₨',NULL,NULL,NULL,NULL),(125,'SDG','ج.س.',NULL,NULL,NULL,NULL),(126,'SEK','kr',NULL,NULL,NULL,NULL),(127,'SGD','$',NULL,NULL,NULL,NULL),(128,'SHP','£',NULL,NULL,NULL,NULL),(129,'SLL','Le',NULL,NULL,NULL,NULL),(130,'SOS','Sh',NULL,NULL,NULL,NULL),(131,'SRD','$',NULL,NULL,NULL,NULL),(132,'SSP','£',NULL,NULL,NULL,NULL),(133,'STD','Db',NULL,NULL,NULL,NULL),(134,'SYP','£',NULL,NULL,NULL,NULL),(135,'SZL','L',NULL,NULL,NULL,NULL),(136,'THB','฿',NULL,NULL,NULL,NULL),(137,'TJS','ЅМ',NULL,NULL,NULL,NULL),(138,'TMT','m',NULL,NULL,NULL,NULL),(139,'TND','د.ت',NULL,NULL,NULL,NULL),(140,'TOP','T$',NULL,NULL,NULL,NULL),(141,'TRY','TRY',NULL,NULL,NULL,NULL),(142,'TTD','$',NULL,NULL,NULL,NULL),(143,'TVD','$',NULL,NULL,NULL,NULL),(144,'TWD','$',NULL,NULL,NULL,NULL),(145,'TZS','Sh',NULL,NULL,NULL,NULL),(146,'UAH','₴',NULL,NULL,NULL,NULL),(147,'UGX','Sh',NULL,NULL,NULL,NULL),(148,'USD','$',NULL,NULL,NULL,NULL),(149,'UYU','$',NULL,NULL,NULL,NULL),(150,'UZS','UZS',NULL,NULL,NULL,NULL),(151,'VEF','Bs',NULL,NULL,NULL,NULL),(152,'VND','₫',NULL,NULL,NULL,NULL),(153,'VUV','Vt',NULL,NULL,NULL,NULL),(154,'WST','T',NULL,NULL,NULL,NULL),(155,'XAF','Fr',NULL,NULL,NULL,NULL),(156,'XCD','$',NULL,NULL,NULL,NULL),(157,'XOF','Fr',NULL,NULL,NULL,NULL),(158,'XPF','Fr',NULL,NULL,NULL,NULL),(159,'YER','﷼',NULL,NULL,NULL,NULL),(160,'ZAR','R',NULL,NULL,NULL,NULL),(161,'ZMW','ZK',NULL,NULL,NULL,NULL),(162,'ZWL','$',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_currency_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_expense_checks`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_expense_checks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_expense_checks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `check_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `bank` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pay_to` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_expense_checks`
--

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

--
-- Table structure for table `lrwp_erp_acct_expense_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_expense_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_expense_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_expense_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_expenses`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_expenses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_expenses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `people_id` int(11) DEFAULT NULL,
  `people_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `check_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `trn_by` int(11) DEFAULT NULL,
  `trn_by_ledger_id` int(11) DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_expenses`
--

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

--
-- Table structure for table `lrwp_erp_acct_financial_years`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_financial_years`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_financial_years` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_financial_years`
--

LOCK TABLES `lrwp_erp_acct_financial_years` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_financial_years` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_financial_years` VALUES (1,'2020','2020-01-01','2020-12-31',NULL,'2020-10-10','1',NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_financial_years` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_invoice_account_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_account_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_account_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `invoice_no` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_account_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoice_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  `qty` int(11) DEFAULT NULL,
  `unit_price` decimal(20,2) DEFAULT 0.00,
  `discount` decimal(20,2) DEFAULT 0.00,
  `tax` decimal(20,2) DEFAULT 0.00,
  `item_total` decimal(20,2) DEFAULT 0.00,
  `ecommerce_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoice_details_tax`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_details_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_details_tax` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `invoice_details_id` int(11) DEFAULT NULL,
  `agency_id` int(11) DEFAULT NULL,
  `tax_rate` decimal(20,2) DEFAULT 0.00,
  `tax_amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_details_tax`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoice_receipts`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_receipts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_receipts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `transaction_charge` decimal(20,2) DEFAULT 0.00,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_by_ledger_id` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_receipts`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoice_receipts_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoice_receipts_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoice_receipts_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `invoice_no` int(11) DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoice_receipts_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_invoices`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_invoices` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `billing_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `discount` decimal(20,2) DEFAULT 0.00,
  `discount_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tax` decimal(20,2) DEFAULT 0.00,
  `estimate` tinyint(1) DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_invoices`
--

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

--
-- Table structure for table `lrwp_erp_acct_journal_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_journal_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_journal_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_journal_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_journals`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_journals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_journals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_date` date DEFAULT NULL,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_no` int(11) DEFAULT NULL,
  `voucher_amount` decimal(20,2) DEFAULT 0.00,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_journals`
--

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

--
-- Table structure for table `lrwp_erp_acct_ledger_categories`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_ledger_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_ledger_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `chart_id` int(11) DEFAULT NULL,
  `parent_id` int(11) DEFAULT NULL,
  `system` tinyint(1) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_ledger_categories`
--

LOCK TABLES `lrwp_erp_acct_ledger_categories` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_ledger_categories` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_ledger_categories` VALUES (1,'Current Asset',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Fixed Asset',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(3,'Inventory',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Non-current Asset',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(5,'Prepayment',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(6,'Bank & Cash',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),(7,'Current Liability',NULL,2,NULL,NULL,NULL,NULL,NULL,NULL),(8,'Liability',NULL,2,NULL,NULL,NULL,NULL,NULL,NULL),(9,'Non-current Liability',NULL,2,NULL,NULL,NULL,NULL,NULL,NULL),(10,'Depreciation',NULL,3,NULL,NULL,NULL,NULL,NULL,NULL),(11,'Direct Costs',NULL,3,NULL,NULL,NULL,NULL,NULL,NULL),(12,'Expense',NULL,3,NULL,NULL,NULL,NULL,NULL,NULL),(13,'Revenue',NULL,4,NULL,NULL,NULL,NULL,NULL,NULL),(14,'Sales',NULL,4,NULL,NULL,NULL,NULL,NULL,NULL),(15,'Other Income',NULL,4,NULL,NULL,NULL,NULL,NULL,NULL),(16,'Equity',NULL,5,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_ledger_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_ledger_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_ledger_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_ledger_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ledger_id` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `trn_date` date DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_ledger_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_ledger_settings`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_ledger_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_ledger_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ledger_id` int(11) DEFAULT NULL,
  `short_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_ledger_settings`
--

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

--
-- Table structure for table `lrwp_erp_acct_ledgers`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_ledgers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_ledgers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `chart_id` int(11) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `code` int(11) DEFAULT NULL,
  `unused` tinyint(1) DEFAULT NULL,
  `system` tinyint(1) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=106 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_ledgers`
--

LOCK TABLES `lrwp_erp_acct_ledgers` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_ledgers` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_ledgers` VALUES (1,1,NULL,'Accounts Receivable','accounts_receivable',120,1,1,NULL,NULL,NULL,NULL),(2,1,NULL,'Inventory','inventory',140,NULL,1,NULL,NULL,NULL,NULL),(3,1,NULL,'Office Equipment','office_equipment',150,NULL,1,NULL,NULL,NULL,NULL),(4,1,NULL,'Less Accumulated Depreciation on Office Equipment','less_accumulated_depreciation_on_office_equipment',151,NULL,1,NULL,NULL,NULL,NULL),(5,1,NULL,'Computer Equipment','computer_equipment',160,NULL,1,NULL,NULL,NULL,NULL),(6,1,NULL,'Less Accumulated Depreciation on Computer Equipment','less_accumulated_depreciation_on_computer_equipment',161,NULL,1,NULL,NULL,NULL,NULL),(7,1,NULL,'Cash','cash',90,NULL,0,NULL,NULL,NULL,NULL),(8,2,NULL,'Accounts Payable','accounts_payable',200,1,1,NULL,NULL,NULL,NULL),(9,2,NULL,'Accruals','accruals',205,NULL,0,NULL,NULL,NULL,NULL),(10,2,NULL,'Unpaid Expense Claims','unpaid_expense_claims',210,NULL,1,NULL,NULL,NULL,NULL),(11,2,NULL,'Wages Payable','wages_payable',215,NULL,1,NULL,NULL,NULL,NULL),(12,2,NULL,'Wages Payable - Payroll','wages_payable_payroll',216,NULL,0,NULL,NULL,NULL,NULL),(13,2,NULL,'Sales Tax','sales_tax',220,NULL,1,NULL,NULL,NULL,NULL),(14,2,NULL,'Employee Tax Payable','employee_tax_payable',230,NULL,0,NULL,NULL,NULL,NULL),(15,2,NULL,'Employee Benefits Payable','employee_benefits_payable',235,NULL,0,NULL,NULL,NULL,NULL),(16,2,NULL,'Employee Deductions payable','employee_deductions_payable',236,NULL,0,NULL,NULL,NULL,NULL),(17,2,NULL,'Income Tax Payable','income_tax_payable',240,NULL,0,NULL,NULL,NULL,NULL),(18,2,NULL,'Suspense','suspense',250,NULL,0,NULL,NULL,NULL,NULL),(19,2,NULL,'Historical Adjustments','historical_adjustments',255,NULL,1,NULL,NULL,NULL,NULL),(20,2,NULL,'Rounding','rounding',260,NULL,1,NULL,NULL,NULL,NULL),(21,2,NULL,'Revenue Received in Advance','revenue_received_in_advance',835,NULL,0,NULL,NULL,NULL,NULL),(22,2,NULL,'Clearing Account','clearing_account',855,NULL,0,NULL,NULL,NULL,NULL),(23,2,NULL,'Loan','loan',290,NULL,0,NULL,NULL,NULL,NULL),(24,5,NULL,'Costs of Goods Sold','costs_of_goods_sold',500,NULL,1,NULL,NULL,NULL,NULL),(25,5,NULL,'Advertising','advertising',600,NULL,0,NULL,NULL,NULL,NULL),(26,5,NULL,'Bank Service Charges','bank_service_charges',605,NULL,0,NULL,NULL,NULL,NULL),(27,5,NULL,'Bank Transaction Charge','bank_transaction_charge',606,NULL,0,NULL,NULL,NULL,NULL),(28,5,NULL,'Janitorial Expenses','janitorial_expenses',610,NULL,0,NULL,NULL,NULL,NULL),(29,5,NULL,'Consulting & Accounting','consulting_accounting',615,NULL,0,NULL,NULL,NULL,NULL),(30,5,NULL,'Entertainment','entertainment',620,NULL,0,NULL,NULL,NULL,NULL),(31,5,NULL,'Postage & Delivary','postage_delivary',624,NULL,0,NULL,NULL,NULL,NULL),(32,5,NULL,'General Expenses','general_expenses',628,NULL,0,NULL,NULL,NULL,NULL),(33,5,NULL,'Insurance','insurance',632,NULL,0,NULL,NULL,NULL,NULL),(34,5,NULL,'Legal Expenses','legal_expenses',636,NULL,0,NULL,NULL,NULL,NULL),(35,5,NULL,'Utilities','utilities',640,NULL,1,NULL,NULL,NULL,NULL),(36,5,NULL,'Automobile Expenses','automobile_expenses',644,NULL,0,NULL,NULL,NULL,NULL),(37,5,NULL,'Office Expenses','office_expenses',648,NULL,1,NULL,NULL,NULL,NULL),(38,5,NULL,'Printing & Stationary','printing_stationary',652,NULL,0,NULL,NULL,NULL,NULL),(39,5,NULL,'Rent','rent',656,NULL,1,NULL,NULL,NULL,NULL),(40,5,NULL,'Repairs & Maintenance','repairs_maintenance',660,NULL,0,NULL,NULL,NULL,NULL),(41,5,NULL,'Wages & Salaries','wages_salaries',664,NULL,0,NULL,NULL,NULL,NULL),(42,5,NULL,'Payroll Tax Expense','payroll_tax_expense',668,NULL,0,NULL,NULL,NULL,NULL),(43,5,NULL,'Dues & Subscriptions','dues_subscriptions',672,NULL,0,NULL,NULL,NULL,NULL),(44,5,NULL,'Telephone & Internet','telephone_internet',676,NULL,0,NULL,NULL,NULL,NULL),(45,5,NULL,'Travel','travel',680,NULL,0,NULL,NULL,NULL,NULL),(46,5,NULL,'Bad Debts','bad_debts',684,NULL,0,NULL,NULL,NULL,NULL),(47,5,NULL,'Depreciation','depreciation',700,NULL,1,NULL,NULL,NULL,NULL),(48,5,NULL,'Income Tax Expense','income_tax_expense',710,NULL,0,NULL,NULL,NULL,NULL),(49,5,NULL,'Employee Benefits Expense','employee_benefits_expense',715,NULL,0,NULL,NULL,NULL,NULL),(50,5,NULL,'Interest Expense','interest_expense',800,NULL,0,NULL,NULL,NULL,NULL),(51,5,NULL,'Bank Revaluations','bank_revaluations',810,NULL,1,NULL,NULL,NULL,NULL),(52,5,NULL,'Unrealized Currency Gains','unrealized_currency_gains',815,NULL,1,NULL,NULL,NULL,NULL),(53,5,NULL,'Realized Currency Gains','realized_currency_gains',820,NULL,1,NULL,NULL,NULL,NULL),(54,5,NULL,'Sales Discount','sales_discount',825,NULL,1,NULL,NULL,NULL,NULL),(55,4,NULL,'Sales','sales',400,NULL,0,NULL,NULL,NULL,NULL),(56,4,NULL,'Interest Income','interest_income',460,NULL,0,NULL,NULL,NULL,NULL),(57,4,NULL,'Other Revenue','other_revenue',470,NULL,0,NULL,NULL,NULL,NULL),(58,4,NULL,'Purchase Discount','purchase_discount',475,NULL,1,NULL,NULL,NULL,NULL),(59,3,NULL,'Owners Contribution','owners_contribution',300,NULL,0,NULL,NULL,NULL,NULL),(60,3,NULL,'Owners Draw','owners_draw',310,NULL,0,NULL,NULL,NULL,NULL),(61,3,NULL,'Retained Earnings','retained_earnings',320,NULL,1,NULL,NULL,NULL,NULL),(62,3,NULL,'Common Stock','common_stock',330,NULL,0,NULL,NULL,NULL,NULL),(63,1,NULL,'Savings Account','savings_account',92,NULL,0,NULL,NULL,NULL,NULL),(64,1,NULL,'Allowance for Doubtful Accounts','allowance_for_doubtful_accounts',1001,NULL,1,NULL,NULL,NULL,NULL),(65,1,NULL,'Interest Receivable','interest_receivable',1002,NULL,1,NULL,NULL,NULL,NULL),(66,1,NULL,'Supplies','supplies',1003,NULL,1,NULL,NULL,NULL,NULL),(67,1,NULL,'Prepaid Insurance','prepaid_insurance',1004,NULL,1,NULL,NULL,NULL,NULL),(68,1,NULL,'Prepaid Rent','prepaid_rent',1005,NULL,1,NULL,NULL,NULL,NULL),(69,1,NULL,'Prepaid Salary','prepaid_salary',1006,NULL,1,NULL,NULL,NULL,NULL),(70,1,NULL,'Land','land',1007,NULL,1,NULL,NULL,NULL,NULL),(71,1,NULL,'Furniture & Fixture','furniture_fixture',1008,NULL,1,NULL,NULL,NULL,NULL),(72,1,NULL,'Buildings','buildings',1009,NULL,1,NULL,NULL,NULL,NULL),(73,1,NULL,'Copyrights','copyrights',1010,NULL,1,NULL,NULL,NULL,NULL),(74,1,NULL,'Goodwill','goodwill',1011,NULL,1,NULL,NULL,NULL,NULL),(75,1,NULL,'Patents','patents',1012,NULL,1,NULL,NULL,NULL,NULL),(76,1,NULL,'Accoumulated Depreciation- Buildings','accoumulated_depreciation_buildings',1013,NULL,1,NULL,NULL,NULL,NULL),(77,1,NULL,'Accoumulated Depreciation- Furniture & Fixtures','accoumulated_depreciation_furniture_fixtures',1014,NULL,1,NULL,NULL,NULL,NULL),(78,2,NULL,'Notes Payable','notes_payable',1201,NULL,1,NULL,NULL,NULL,NULL),(79,2,NULL,'Salaries and Wages Payable','salaries_and_wages_payable',1202,NULL,1,NULL,NULL,NULL,NULL),(80,2,NULL,'Unearned Rent Revenue','unearned_rent_revenue',1203,NULL,1,NULL,NULL,NULL,NULL),(81,2,NULL,'Interest Payable','interest_payable',1204,NULL,1,NULL,NULL,NULL,NULL),(82,2,NULL,'Dividends Payable','dividends_payable',1205,NULL,1,NULL,NULL,NULL,NULL),(83,2,NULL,'Bonds Payable','bonds_payable',1206,NULL,1,NULL,NULL,NULL,NULL),(84,2,NULL,'Discount on Bonds Payable','discount_on_bonds_payable',1207,NULL,1,NULL,NULL,NULL,NULL),(85,2,NULL,'Premium on Bonds Payable','premium_on_bonds_payable',1208,NULL,1,NULL,NULL,NULL,NULL),(86,2,NULL,'Mortgage Payable','mortgage_payable',1209,NULL,1,NULL,NULL,NULL,NULL),(87,3,NULL,'Owner\'s Equity','owner_s_equity',1301,NULL,1,NULL,NULL,NULL,NULL),(88,3,NULL,'Paid-in Capital in Excess of Par- Common Stock','paid_in_capital_in_excess_of_par_common_stock',1302,NULL,1,NULL,NULL,NULL,NULL),(89,3,NULL,'Paid-in Capital in Excess of Par- Preferred Stock','paid_in_capital_in_excess_of_par_preferred_stock',1303,NULL,1,NULL,NULL,NULL,NULL),(90,3,NULL,'Preferred Stock','preferred_stock',1304,NULL,1,NULL,NULL,NULL,NULL),(91,3,NULL,'Treasury Stock','treasury_stock',1305,NULL,1,NULL,NULL,NULL,NULL),(92,3,NULL,'Dividends','dividends',1306,NULL,1,NULL,NULL,NULL,NULL),(93,3,NULL,'Income Summary','income_summary',1307,NULL,1,NULL,NULL,NULL,NULL),(94,4,NULL,'Service Revenue','service_revenue',1401,NULL,1,NULL,NULL,NULL,NULL),(95,4,NULL,'Sales Revenue','sales_revenue',1402,NULL,1,NULL,NULL,NULL,NULL),(96,4,NULL,'Gain on Disposal of Plant Assets','gain_on_disposal_of_plant_assets',1404,NULL,1,NULL,NULL,NULL,NULL),(97,4,NULL,'Asset Sales','asset_sales',1405,NULL,1,NULL,NULL,NULL,NULL),(98,5,NULL,'Amortization Expense','amortization_expense',1501,NULL,1,NULL,NULL,NULL,NULL),(99,5,NULL,'Freight-Out','freight_out',1502,NULL,1,NULL,NULL,NULL,NULL),(100,5,NULL,'Insurance Expense','insurance_expense',1503,NULL,1,NULL,NULL,NULL,NULL),(101,5,NULL,'Loss on Disposal of Plant Assets','loss_on_disposal_of_plant_assets',1504,NULL,1,NULL,NULL,NULL,NULL),(102,5,NULL,'Maintenance and Repairs Expense','maintenance_and_repairs_expense',1505,NULL,1,NULL,NULL,NULL,NULL),(103,5,NULL,'Purchase','purchase',1506,NULL,1,NULL,NULL,NULL,NULL),(104,5,NULL,'Asset Purchase','asset_purchase',1506,NULL,1,NULL,NULL,NULL,NULL),(105,5,NULL,'Sales Returns and Allowance','sales_returns_and_allowance',1403,NULL,1,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_ledgers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_opening_balances`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_opening_balances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_opening_balances` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `financial_year_id` int(11) DEFAULT NULL,
  `chart_id` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_opening_balances`
--

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

--
-- Table structure for table `lrwp_erp_acct_pay_bill`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_pay_bill`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_pay_bill` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `vendor_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_by_ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_pay_bill`
--

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

--
-- Table structure for table `lrwp_erp_acct_pay_bill_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_pay_bill_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_pay_bill_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `bill_no` int(11) DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_pay_bill_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_pay_purchase`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_pay_purchase`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_pay_purchase` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `vendor_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_by_ledger_id` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_pay_purchase`
--

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

--
-- Table structure for table `lrwp_erp_acct_pay_purchase_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_pay_purchase_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_pay_purchase_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `purchase_no` int(11) DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_pay_purchase_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_payment_methods`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_payment_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_payment_methods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_payment_methods`
--

LOCK TABLES `lrwp_erp_acct_payment_methods` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_payment_methods` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_payment_methods` VALUES (1,'Cash',NULL,NULL,NULL,NULL),(2,'Bank',NULL,NULL,NULL,NULL),(3,'Check',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_payment_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_people_account_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_people_account_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_people_account_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `people_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_people_account_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_people_trn`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_people_trn`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_people_trn` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `people_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_no` int(11) DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `trn_date` date DEFAULT NULL,
  `trn_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_people_trn`
--

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

--
-- Table structure for table `lrwp_erp_acct_people_trn_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_people_trn_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_people_trn_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `people_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `voucher_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_people_trn_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_product_categories`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_product_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_product_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `parent` int(11) NOT NULL DEFAULT 0,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_product_categories`
--

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

--
-- Table structure for table `lrwp_erp_acct_product_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_product_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_product_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `stock_in` int(11) DEFAULT NULL,
  `stock_out` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_product_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_product_types`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_product_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_product_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_product_types`
--

LOCK TABLES `lrwp_erp_acct_product_types` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_product_types` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_product_types` VALUES (1,'Inventory','inventory',NULL,NULL,NULL,NULL),(2,'Service','service',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_product_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_products`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `product_type_id` int(11) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  `tax_cat_id` int(11) DEFAULT NULL,
  `vendor` int(11) DEFAULT NULL,
  `cost_price` decimal(20,2) DEFAULT 0.00,
  `sale_price` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_products`
--

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

--
-- Table structure for table `lrwp_erp_acct_purchase`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_purchase`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_purchase` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `vendor_id` int(11) DEFAULT NULL,
  `vendor_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `ref` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `purchase_order` tinyint(1) DEFAULT NULL,
  `attachments` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_purchase`
--

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

--
-- Table structure for table `lrwp_erp_acct_purchase_account_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_purchase_account_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_purchase_account_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `purchase_no` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_purchase_account_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_purchase_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_purchase_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_purchase_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `trn_no` int(11) DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  `qty` int(11) DEFAULT NULL,
  `price` decimal(20,2) DEFAULT 0.00,
  `amount` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_purchase_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_agencies`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_agencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_agencies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ecommerce_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_agencies`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_agency_details`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_agency_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_agency_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `agency_id` int(11) DEFAULT NULL,
  `trn_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `debit` decimal(20,2) DEFAULT 0.00,
  `credit` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_agency_details`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_cat_agency`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_cat_agency`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_cat_agency` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_id` int(11) DEFAULT NULL,
  `component_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tax_cat_id` int(11) DEFAULT NULL,
  `agency_id` int(11) DEFAULT NULL,
  `tax_rate` decimal(20,2) DEFAULT 0.00,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_cat_agency`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_categories`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_categories`
--

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

--
-- Table structure for table `lrwp_erp_acct_tax_pay`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_tax_pay`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_tax_pay` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT 0.00,
  `voucher_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `trn_by` int(11) DEFAULT NULL,
  `agency_id` int(11) DEFAULT NULL,
  `ledger_id` int(11) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_tax_pay`
--

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

--
-- Table structure for table `lrwp_erp_acct_taxes`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_taxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_taxes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_rate_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `tax_number` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `default` tinyint(1) DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_taxes`
--

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

--
-- Table structure for table `lrwp_erp_acct_transfer_voucher`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_transfer_voucher`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_transfer_voucher` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_no` int(11) DEFAULT NULL,
  `trn_date` date DEFAULT NULL,
  `amount` decimal(20,2) DEFAULT NULL,
  `ac_from` int(11) DEFAULT NULL,
  `ac_to` int(11) DEFAULT NULL,
  `particulars` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_transfer_voucher`
--

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

--
-- Table structure for table `lrwp_erp_acct_trn_status_types`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_trn_status_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_trn_status_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_trn_status_types`
--

LOCK TABLES `lrwp_erp_acct_trn_status_types` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_acct_trn_status_types` DISABLE KEYS */;
INSERT INTO `lrwp_erp_acct_trn_status_types` VALUES (1,'Draft','draft',NULL,NULL,NULL,NULL),(2,'Awaiting Payment','awaiting_payment',NULL,NULL,NULL,NULL),(3,'Pending','pending',NULL,NULL,NULL,NULL),(4,'Paid','paid',NULL,NULL,NULL,NULL),(5,'Partially Paid','partially_paid',NULL,NULL,NULL,NULL),(6,'Approved','approved',NULL,NULL,NULL,NULL),(7,'Closed','closed',NULL,NULL,NULL,NULL),(8,'Void','void',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `lrwp_erp_acct_trn_status_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_acct_voucher_no`
--

DROP TABLE IF EXISTS `lrwp_erp_acct_voucher_no`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_acct_voucher_no` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `editable` tinyint(4) DEFAULT 0,
  `created_at` date DEFAULT NULL,
  `created_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `updated_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_acct_voucher_no`
--

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

--
-- Table structure for table `lrwp_erp_audit_log`
--

DROP TABLE IF EXISTS `lrwp_erp_audit_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_audit_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `component` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `sub_component` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `data_id` bigint(20) DEFAULT NULL,
  `old_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `new_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `changetype` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `component` (`component`),
  KEY `sub_component` (`sub_component`),
  KEY `changetype` (`changetype`),
  KEY `created_by` (`created_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_audit_log`
--

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

--
-- Table structure for table `lrwp_erp_company_locations`
--

DROP TABLE IF EXISTS `lrwp_erp_company_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_company_locations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `company_id` int(11) unsigned DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zip` int(6) DEFAULT NULL,
  `country` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fax` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `company_id` (`company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_company_locations`
--

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

--
-- Table structure for table `lrwp_erp_crm_activities_task`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_activities_task`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_activities_task` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `activity_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `activity_id` (`activity_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 `lrwp_erp_crm_activities_task`
--

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

--
-- Table structure for table `lrwp_erp_crm_contact_group`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_contact_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_contact_group` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `private` tinyint(1) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_contact_group`
--

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

--
-- Table structure for table `lrwp_erp_crm_contact_subscriber`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_contact_subscriber`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_contact_subscriber` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `group_id` int(11) DEFAULT NULL,
  `status` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subscribe_at` datetime DEFAULT NULL,
  `unsubscribe_at` datetime DEFAULT NULL,
  `hash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `user_group` (`user_id`,`group_id`),
  KEY `status` (`status`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_contact_subscriber`
--

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

--
-- Table structure for table `lrwp_erp_crm_customer_activities`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_customer_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_customer_activities` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email_subject` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `log_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `extra` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sent_notification` tinyint(4) DEFAULT 0,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `type` (`type`(250)),
  KEY `log_type` (`log_type`(250)),
  KEY `created_by` (`created_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_customer_activities`
--

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

--
-- Table structure for table `lrwp_erp_crm_customer_companies`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_customer_companies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_customer_companies` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` bigint(20) DEFAULT NULL,
  `company_id` bigint(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `company_id` (`company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_customer_companies`
--

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

--
-- Table structure for table `lrwp_erp_crm_save_email_replies`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_save_email_replies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_save_email_replies` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `template` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_save_email_replies`
--

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

--
-- Table structure for table `lrwp_erp_crm_save_search`
--

DROP TABLE IF EXISTS `lrwp_erp_crm_save_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_crm_save_search` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `global` tinyint(4) DEFAULT 0,
  `search_name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `search_val` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_crm_save_search`
--

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

--
-- Table structure for table `lrwp_erp_holidays_indv`
--

DROP TABLE IF EXISTS `lrwp_erp_holidays_indv`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_holidays_indv` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `holiday_id` int(11) DEFAULT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` date DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_holidays_indv`
--

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

--
-- Table structure for table `lrwp_erp_hr_announcement`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_announcement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_announcement` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `post_id` bigint(11) NOT NULL,
  `status` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_status` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `post_id` (`post_id`),
  KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_announcement`
--

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

--
-- Table structure for table `lrwp_erp_hr_dependents`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_dependents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_dependents` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) DEFAULT NULL,
  `name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `relation` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_dependents`
--

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

--
-- Table structure for table `lrwp_erp_hr_depts`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_depts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_depts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lead` int(11) unsigned DEFAULT 0,
  `parent` int(11) unsigned DEFAULT 0,
  `status` tinyint(1) unsigned DEFAULT 1,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_depts`
--

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

--
-- Table structure for table `lrwp_erp_hr_designations`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_designations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_designations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` tinyint(1) DEFAULT 1,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_designations`
--

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

--
-- Table structure for table `lrwp_erp_hr_education`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_education`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_education` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) unsigned DEFAULT NULL,
  `school` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `degree` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `finished` int(4) unsigned DEFAULT NULL,
  `notes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `interest` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_education`
--

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

--
-- Table structure for table `lrwp_erp_hr_employee_history`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_employee_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_employee_history` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `module` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `category` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `module` (`module`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_employee_history`
--

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

--
-- Table structure for table `lrwp_erp_hr_employee_notes`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_employee_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_employee_notes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_by` bigint(20) unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_employee_notes`
--

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

--
-- Table structure for table `lrwp_erp_hr_employee_performance`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_employee_performance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_employee_performance` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) unsigned DEFAULT NULL,
  `reporting_to` int(11) unsigned DEFAULT NULL,
  `job_knowledge` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `work_quality` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attendance` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `communication` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `dependablity` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reviewer` int(11) unsigned DEFAULT NULL,
  `comments` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `completion_date` datetime DEFAULT NULL,
  `goal_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `employee_assessment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `supervisor` int(11) unsigned DEFAULT NULL,
  `supervisor_assessment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `performance_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_employee_performance`
--

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

--
-- Table structure for table `lrwp_erp_hr_employees`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_employees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_employees` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `employee_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `designation` int(11) unsigned NOT NULL DEFAULT 0,
  `department` int(11) unsigned NOT NULL DEFAULT 0,
  `location` int(10) unsigned NOT NULL DEFAULT 0,
  `hiring_source` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `hiring_date` date NOT NULL,
  `termination_date` date NOT NULL,
  `date_of_birth` date NOT NULL,
  `reporting_to` bigint(20) unsigned NOT NULL DEFAULT 0,
  `pay_rate` int(11) unsigned NOT NULL DEFAULT 0,
  `pay_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `deleted_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `employee_id` (`employee_id`),
  KEY `designation` (`designation`),
  KEY `department` (`department`),
  KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_employees`
--

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

--
-- Table structure for table `lrwp_erp_hr_financial_years`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_financial_years`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_financial_years` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `fy_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `start_date` int(11) DEFAULT NULL,
  `end_date` int(11) DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `updated_by` bigint(20) unsigned DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `year_search` (`start_date`,`end_date`),
  KEY `start_date` (`start_date`),
  KEY `end_date` (`end_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_financial_years`
--

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

--
-- Table structure for table `lrwp_erp_hr_holiday`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_holiday`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_holiday` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `start` timestamp NOT NULL DEFAULT current_timestamp(),
  `end` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `range_status` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_holiday`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_approval_status`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_approval_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_approval_status` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leave_request_id` bigint(20) unsigned NOT NULL,
  `approval_status_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `approved_by` bigint(20) unsigned DEFAULT NULL,
  `message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leave_request_id` (`leave_request_id`),
  KEY `approval_status_id` (`approval_status_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_approval_status`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_encashment_requests`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_encashment_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_encashment_requests` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `leave_id` smallint(6) unsigned NOT NULL,
  `approved_by` bigint(20) unsigned DEFAULT NULL,
  `approval_status_id` tinyint(3) unsigned NOT NULL DEFAULT 1,
  `encash_days` decimal(4,1) unsigned NOT NULL DEFAULT 0.0,
  `forward_days` decimal(4,1) unsigned NOT NULL DEFAULT 0.0,
  `amount` decimal(20,2) NOT NULL DEFAULT 0.00,
  `total` decimal(20,2) NOT NULL DEFAULT 0.00,
  `f_year` smallint(5) unsigned NOT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `leave_id` (`leave_id`),
  KEY `f_year` (`f_year`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_encashment_requests`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_entitlements`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_entitlements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_entitlements` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `leave_id` smallint(6) unsigned NOT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `trn_id` bigint(20) unsigned NOT NULL,
  `trn_type` enum('leave_policies','leave_approval_status','leave_encashment_requests','leave_entitlements','unpaid_leave','leave_encashment','leave_carryforward','manual_leave_policies','Accounts','others','leave_accrual','carry_forward_leave_expired') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'leave_policies',
  `day_in` decimal(5,1) unsigned NOT NULL DEFAULT 0.0,
  `day_out` decimal(5,1) unsigned NOT NULL DEFAULT 0.0,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `f_year` smallint(6) NOT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `comp_key_1` (`user_id`,`leave_id`,`f_year`,`trn_type`),
  KEY `trn_id` (`trn_id`),
  KEY `leave_id` (`leave_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_entitlements`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_policies`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_policies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_policies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `leave_id` smallint(5) unsigned NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `days` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `color` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `apply_limit` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `employee_type` enum('-1','permanent','parttime','contract','temporary','trainee') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'permanent',
  `department_id` int(11) NOT NULL DEFAULT -1,
  `location_id` int(11) NOT NULL DEFAULT -1,
  `designation_id` int(11) NOT NULL DEFAULT -1,
  `gender` enum('-1','male','female','other') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '-1',
  `marital` enum('-1','single','married','widowed') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '-1',
  `f_year` smallint(5) unsigned DEFAULT NULL,
  `apply_for_new_users` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `carryover_days` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `carryover_uses_limit` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `encashment_days` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `encashment_based_on` enum('pay_rate','basic','gross') COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `forward_default` enum('encashment','carryover') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'encashment',
  `applicable_from_days` smallint(5) unsigned NOT NULL DEFAULT 0,
  `accrued_amount` decimal(10,2) NOT NULL DEFAULT 0.00,
  `accrued_max_days` smallint(4) unsigned NOT NULL DEFAULT 0,
  `halfday_enable` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leave_id` (`leave_id`),
  KEY `f_year` (`f_year`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_policies`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_policies_segregation`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_policies_segregation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_policies_segregation` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leave_policy_id` bigint(20) unsigned NOT NULL,
  `jan` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `feb` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `mar` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `apr` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `may` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `jun` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `jul` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `aug` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `sep` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `oct` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `nov` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `decem` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leave_policy_id` (`leave_policy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_policies_segregation`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_request_details`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_request_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_request_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leave_request_id` bigint(20) unsigned NOT NULL,
  `leave_approval_status_id` bigint(20) unsigned NOT NULL,
  `workingday_status` tinyint(3) unsigned NOT NULL DEFAULT 1,
  `user_id` bigint(20) unsigned NOT NULL,
  `f_year` smallint(6) NOT NULL,
  `leave_date` int(11) NOT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leave_request_id` (`leave_request_id`),
  KEY `user_id` (`user_id`),
  KEY `user_fyear_leave` (`user_id`,`f_year`,`leave_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_request_details`
--

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

--
-- Table structure for table `lrwp_erp_hr_leave_requests`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leave_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leave_requests` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `leave_id` smallint(6) unsigned NOT NULL,
  `leave_entitlement_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `day_status_id` smallint(5) unsigned NOT NULL DEFAULT 1,
  `days` decimal(5,1) unsigned NOT NULL DEFAULT 0.0,
  `start_date` int(11) NOT NULL,
  `end_date` int(11) NOT NULL,
  `reason` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_status` smallint(6) unsigned NOT NULL DEFAULT 2,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `user_leave` (`user_id`,`leave_id`),
  KEY `user_entitlement` (`user_id`,`leave_entitlement_id`),
  KEY `last_status` (`last_status`),
  KEY `leave_entitlement_id` (`leave_entitlement_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leave_requests`
--

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

--
-- Table structure for table `lrwp_erp_hr_leaves`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leaves`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leaves` (
  `id` smallint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leaves`
--

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

--
-- Table structure for table `lrwp_erp_hr_leaves_unpaid`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_leaves_unpaid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_leaves_unpaid` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leave_id` smallint(6) unsigned NOT NULL,
  `leave_request_id` bigint(20) unsigned NOT NULL,
  `leave_approval_status_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `days` decimal(4,1) unsigned NOT NULL DEFAULT 0.0,
  `amount` decimal(20,2) NOT NULL DEFAULT 0.00,
  `total` decimal(20,2) NOT NULL DEFAULT 0.00,
  `f_year` smallint(5) unsigned NOT NULL,
  `created_at` int(11) DEFAULT NULL,
  `updated_at` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `leave_id` (`leave_id`),
  KEY `f_year` (`f_year`),
  KEY `leave_request_id` (`leave_request_id`),
  KEY `leave_approval_status_id` (`leave_approval_status_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_leaves_unpaid`
--

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

--
-- Table structure for table `lrwp_erp_hr_work_exp`
--

DROP TABLE IF EXISTS `lrwp_erp_hr_work_exp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_hr_work_exp` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `employee_id` int(11) DEFAULT NULL,
  `company_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `job_title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `from` date DEFAULT NULL,
  `to` date DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `employee_id` (`employee_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_hr_work_exp`
--

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

--
-- Table structure for table `lrwp_erp_people_type_relations`
--

DROP TABLE IF EXISTS `lrwp_erp_people_type_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_people_type_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `people_id` bigint(20) unsigned DEFAULT NULL,
  `people_types_id` int(11) unsigned DEFAULT NULL,
  `deleted_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `people_id` (`people_id`),
  KEY `people_types_id` (`people_types_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_people_type_relations`
--

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

--
-- Table structure for table `lrwp_erp_people_types`
--

DROP TABLE IF EXISTS `lrwp_erp_people_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_people_types` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_people_types`
--

LOCK TABLES `lrwp_erp_people_types` WRITE;
/*!40000 ALTER TABLE `lrwp_erp_people_types` DISABLE KEYS */;
INSERT INTO `lrwp_erp_people_types` VALUES (1,'contact'),(2,'company'),(3,'customer'),(4,'vendor'),(5,'employee');
/*!40000 ALTER TABLE `lrwp_erp_people_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_erp_peoplemeta`
--

DROP TABLE IF EXISTS `lrwp_erp_peoplemeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_peoplemeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `erp_people_id` bigint(20) 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 `erp_people_id` (`erp_people_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 `lrwp_erp_peoplemeta`
--

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

--
-- Table structure for table `lrwp_erp_peoples`
--

DROP TABLE IF EXISTS `lrwp_erp_peoples`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_peoples` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT 0,
  `first_name` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `company` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `mobile` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `other` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `website` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fax` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `notes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `street_1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `street_2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `postal_code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `currency` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `life_stage` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `contact_owner` bigint(20) DEFAULT NULL,
  `hash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_by` bigint(20) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `first_name` (`first_name`),
  KEY `last_name` (`last_name`),
  KEY `email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_peoples`
--

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

--
-- Table structure for table `lrwp_erp_user_leaves`
--

DROP TABLE IF EXISTS `lrwp_erp_user_leaves`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_erp_user_leaves` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `request_id` int(11) DEFAULT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` date DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_erp_user_leaves`
--

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

--
-- Table structure for table `lrwp_favethemes_currency_converter`
--

DROP TABLE IF EXISTS `lrwp_favethemes_currency_converter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_favethemes_currency_converter` (
  `currency_code` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_rate` float NOT NULL,
  `currency_data` varchar(5000) COLLATE utf8mb4_unicode_ci NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp(),
  UNIQUE KEY `currency_code` (`currency_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_favethemes_currency_converter`
--

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

--
-- Table structure for table `lrwp_favethemes_insights`
--

DROP TABLE IF EXISTS `lrwp_favethemes_insights`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_favethemes_insights` (
  `id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `listing_id` bigint(25) unsigned NOT NULL,
  `time` datetime NOT NULL,
  `ip_address` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `unique_identifier` varchar(70) COLLATE utf8mb4_unicode_ci NOT NULL,
  `referral_url` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referral_domain` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `platform` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `device` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `browser` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `http_user_agent` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `language` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_code` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(35) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `referral_domain` (`referral_domain`(250)),
  KEY `referral_url` (`referral_url`(250)),
  KEY `unique_identifier` (`unique_identifier`),
  KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_favethemes_insights`
--

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

--
-- Table structure for table `lrwp_houzez_crm_activities`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_activities` (
  `activity_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`activity_id`)
) ENGINE=MyISAM AUTO_INCREMENT=308 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_activities`
--

LOCK TABLES `lrwp_houzez_crm_activities` WRITE;
/*!40000 ALTER TABLE `lrwp_houzez_crm_activities` DISABLE KEYS */;
INSERT INTO `lrwp_houzez_crm_activities` VALUES (1,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Eric Hebert\";s:5:\"email\";s:23:\"eric@emjaproperties.com\";s:5:\"phone\";s:10:\"7042247413\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:58:\"Interested in the 9 house portfolio and the numbers in it.\";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-08 05:20:47'),(2,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Wayne\";s:5:\"email\";s:13:\"wbc58@att.net\";s:5:\"phone\";s:12:\"407-412-4552\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:46:\"Would like to see your listing in China Grove \";s:8:\"agent_id\";s:3:\"468\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-16 19:12:31'),(3,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Wayne\";s:5:\"email\";s:13:\"wbc58@att.net\";s:5:\"phone\";s:12:\"407-412-4552\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:46:\"Would like to see your listing in China Grove \";s:8:\"agent_id\";s:3:\"468\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-16 19:12:39'),(4,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Floyd W Scott\";s:5:\"email\";s:20:\"Honeydo777@gmail.com\";s:5:\"phone\";s:10:\"7049330006\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:406:\"Hey Cindy, hope you\\\'re doing well? Will you please stop sending me houses that are way over my price I\\\'m only looking at maybe a 50 or $60,000 high price range and unless the properties will sell for over $200,000 after fix up that I\\\'m not interested in anything that\\\'s over 60,000. You keep sending me things that are way over 60,000 that\\\'s why I\\\'m not buying anything right now that you\\\'re sending\";s:8:\"agent_id\";s:3:\"373\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-16 21:39:44'),(5,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Floyd W Scott\";s:5:\"email\";s:20:\"Honeydo777@gmail.com\";s:5:\"phone\";s:10:\"7049330006\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:161:\"I\\\'m looking for homes under $50,000 that need work in between Salisbury and Kannapolis that have HIGH ARV.I will entertain up to $80,000 if ARV is over $250,000\";s:8:\"agent_id\";s:3:\"373\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-17 19:39:52'),(6,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Floyd W Scott\";s:5:\"email\";s:20:\"Honeydo777@gmail.com\";s:5:\"phone\";s:10:\"7049330006\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:161:\"I\\\'m looking for homes under $50,000 that need work in between Salisbury and Kannapolis that have HIGH ARV.I will entertain up to $80,000 if ARV is over $250,000\";s:8:\"agent_id\";s:3:\"373\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-17 19:39:58'),(7,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Floyd W Scott\";s:5:\"email\";s:20:\"Honeydo777@gmail.com\";s:5:\"phone\";s:10:\"7049330006\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:161:\"I\\\'m looking for homes under $50,000 that need work in between Salisbury and Kannapolis that have HIGH ARV.I will entertain up to $80,000 if ARV is over $250,000\";s:8:\"agent_id\";s:3:\"373\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-17 19:40:07'),(8,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Cynthia Hahn\";s:5:\"email\";s:19:\"chahn27@hotmail.com\";s:5:\"phone\";s:10:\"7043631544\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:373:\"Amanda, \r\nMy name is Cynthia Hahn.  I am a broker.  My sister is moving here from MD and has 3 horses.  I am looking for her a place. I saw the land for sale on Austin Rd. I am not a member of the MLS. I use my license for my personal purchases and for family. I noted it is a government sale.  Can you please email me the details on the property. \r\nThank you\r\nCynthia Hahn\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-06-19 18:57:49'),(9,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Rochelle Lilly\";s:5:\"email\";s:23:\"rochellelilly@yahoo.com\";s:5:\"phone\";s:10:\"7736302318\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:195:\"Hi , I saw profile on Lantern Realty and Development and wanted to see if i can get some help with the property at the address of 1232. I don\\\'t remember the street or highway close to mint hill.\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-07-15 04:58:15'),(10,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Tracy Burkett\";s:5:\"email\";s:21:\"tracyb928@hotmail.com\";s:5:\"phone\";s:10:\"8287772696\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:519:\"Hey we\\\'re looking for land!  We know exactly what we want (mostly) so its just a matter of it becoming available.  We want 8+ acres (we dont care if theres a house there, and would probably prefer there not to be a house) in the cabarrus county area---Midland, harrisburg area--the other side of 601 (towards Locust) is too far.  RIght into Mecklenburg county off 24/27 would be ok too.  I\\\'ve been setting my max price for $500k when I search online, but probably we\\\'re hoping for 200K or less, more realistically.  \";s:8:\"agent_id\";s:3:\"383\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-07-22 22:21:14'),(11,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Meggie Lasher\";s:5:\"email\";s:23:\"meggie.lasher@gmail.com\";s:5:\"phone\";s:10:\"8285820753\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:210:\"Hi Jeremy,\r\n\r\nI’m interested in the property at 1802 W C Street. I’d be a first time home buyer. I’m looking into the USDA loan. Working on pre-qualification! \r\n\r\nI look forward to hearing from you soon. \";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-08-08 21:14:02'),(12,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Tamara Borges\";s:5:\"email\";s:21:\"tborges1515@gmail.com\";s:5:\"phone\";s:10:\"3215066529\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:300:\"Good morning, I’m interested in the property you have listed at 7067 NC 218\r\nPeachland, NC 28133.  I currently live in Florida and I’m coming in to Charlotte today to visit my daughter till this Sunday 8/23, will you be available to show me?  I look forward to hearing from you, thanks.\r\n\r\nTamara\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-08-20 16:15:43'),(13,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Cheryl Baxter\";s:5:\"email\";s:19:\"cmbaxter2@gmail.com\";s:5:\"phone\";s:10:\"7047968843\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:34:\"Hey Paula! Can you give me a call?\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-08-27 00:55:52'),(14,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Julia Corbin\";s:5:\"email\";s:23:\"juliacorbin88@gmail.com\";s:5:\"phone\";s:10:\"5132609464\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:1208:\"Hi, Brenda !  I don\\\'t have your home email  - so I\\\'m sending this to you - I looked up your business page online!  Mom\\\'s 80th bday is coming up - here\\\'s the email I\\\'m sending out to family.  Will you let Deanna know, too?  And Aunt Ann?  Thanks!  I hope you all are well - have a great week !  \r\n\r\nJudy Inman Richter\\\'s birthday is September 14.  Don\\\'t tell her we told you, but she will be 80!  She is the youngest 80-year-old we\\\'ve ever met !  Her address:\r\nMrs. Judy Richter1314 Glen Meadow Dr.Findlay, OH  45840\r\n\r\nMost of you know, our dad was diagnosed with bone cancer in the spring.  He is responding well to several medications.  He has some really good days, but has his share of tough days with considerable pain.  One of the hardest things about the last few months is that John and Judy have felt pretty isolated.  They have had some back porch and front porch picnics with immediate family, which has helped a lot.  Dad got out and played 9 holes of golf with John, Jim, and Mike. He was very happy about that.  We know they would appreciate cards and calls.  \r\nThank you in advance for helping to celebrate Aunt Judy / Honeybunch ! \r\nLove,\r\nJulie, John, Jill, and Jessie \";s:8:\"agent_id\";s:3:\"528\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-08-30 20:20:19'),(15,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Mitch Green\";s:5:\"email\";s:21:\"bear__007@hotmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:261:\"Hi Chris Puckett, I saw your listing 45 Mandalay Pl SW, Concord, NC 28027\r\n\r\n9x rental properties listed for 725k.  Are all 9 homes about the same size 900 sqft from the 1940s? What is the rental income?  Tenants are all long term tenants or on 1 year leases?  \";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-09-26 08:49:07'),(16,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Regan Hall\";s:5:\"email\";s:18:\"reganlhall@aol.com\";s:5:\"phone\";s:14:\"(980) 332-0780\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:490:\"Hi Kim, my mom wrote to you and asked if she signed anything with you locking her into the inability to acquire another agent?, she is looking up in the area of lenoir and spoke with an agent to see what is available and was told to find out about anything signed between you and her just like with Jessica..I\\\'m assuming you didnt have her sign any commitment the same as Jesssica but she needs to know so we can move forward with the search. Please let her or myself know asap! Thanks Kim\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-09-26 22:58:24'),(17,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Easton Nesbitt\";s:5:\"email\";s:20:\"eaneaston5@gmail.com\";s:5:\"phone\";s:10:\"9802342178\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:296:\"Hi Paula, it’s Easton Nesbitt from the barbershop on West Avenue. I was wondering if you do any type of business with rentals such as apartments or rental homes? I’m looking for one in Kannapolis and maybe the surrounding area. If you could get back with me that would be awesome! Thank you! \";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-10-06 19:08:42'),(18,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:58:\"Renae Fountain, Realtor/Broker @ High Country Realty of NC\";s:5:\"email\";s:29:\"Renae@highcountryrealtync.com\";s:5:\"phone\";s:12:\"910-612-4441\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:278:\"I have a client that would like to see 520 Alleghany Spur Road, \r\nTraphill, NC.  Can you please send me the MLS Agent Full Sheet with all information. Also, how can I gain access to homes to show them.  If possible I would  like to show Tuesday afternoon or Wednesday afternoon.\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-10-13 06:26:01'),(19,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"amanda cody\";s:5:\"email\";s:25:\"amandaearnhardt@yahoo.com\";s:5:\"phone\";s:10:\"9805811399\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-10-13 23:26:49'),(20,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Eddie Morrison\";s:5:\"email\";s:22:\"eamorrison74@gmail.com\";s:5:\"phone\";s:10:\"7049179265\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:267:\"Hi Ethan Stillinger, I saw your sign in the Cambridge community in Iron Station I believe.  It was on the left hand side as you enter in the community.  Must be the first lot.  Is this lot still available, what is the asking price and may I see the CCR\\\'s?  Thank you\";s:8:\"agent_id\";s:3:\"141\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-10-18 05:10:07'),(21,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:4:\"Oren\";s:5:\"email\";s:12:\"orenm@kw.com\";s:5:\"phone\";s:12:\"917-291-1178\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:165:\"Hi Hosanna \r\n\r\nWondering if you had any interested Buyers for a project in China Grove?\r\n\r\nhttps://matrix.carolinamls.com/matrix/shared/mgdgHv1kpGc/804RailroadAvenue\";s:8:\"agent_id\";s:3:\"555\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-11-05 23:44:07'),(22,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Josh Edwards\";s:5:\"email\";s:23:\"josh.edwards@sscoop.com\";s:5:\"phone\";s:10:\"7045760547\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:343:\"Hi Mike, I wanted to see if i can get some help with 158 Edwards Store Rd, in Peachland? I’m a very interested buyer and by the pics of the property & riding by it I will likely pay asking price if it holds true to the pics of the inside. If the seller hasn’t signed a contract with another buyer maybe I can get my name in on it. Thanks!!\";s:8:\"agent_id\";s:3:\"604\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2020-11-22 08:09:39'),(23,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Amy Workman\";s:5:\"email\";s:22:\"interfaceamy@gmail.com\";s:5:\"phone\";s:10:\"7046401063\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:570:\"Hi Cheyenne,\r\n\r\nI found a property that I am interested in on Zillow and believe you are the listing agent!  It is a parcel of land on high rock lake on Waters Road:  https://www.zillow.com/homedetails/0-Waters-Rd-16-Salisbury-NC-28146/2077973431_zpid/.  Is this property still available?  If so, could you give me some more details....  what are the HOA dues and what is included with the dues..pool?  Common area?  Also, is there a forested setback requirement for this land from the water?    What are the restrictions with the HOA?  Thank you so much!\r\n\r\nAmy Workman\";s:8:\"agent_id\";s:3:\"822\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-01-12 01:50:41'),(24,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Grace\";s:5:\"email\";s:24:\"graceevans1322@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:149:\"Hi Kimberly! I saw your sign out at a house on Camp Julia Rd that I would be interested in looking at to purchase and was wondering the price on it. \";s:8:\"agent_id\";s:3:\"473\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-01-18 04:55:04'),(25,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:18:\"Jennifer Burroughs\";s:5:\"email\";s:18:\"74jennyk@gmail.com\";s:5:\"phone\";s:10:\"7042322290\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:274:\"Hi Courtney Sloan Holshouser, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nGive me a call or text me...wanted to see if you still wanted to meet up tonight to talk about what Mike and I are looking for in a house.\r\nThanks!!\";s:8:\"agent_id\";s:4:\"1449\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-02-11 02:32:07'),(26,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Emily Furr\";s:5:\"email\";s:23:\"Emily.Dana.h4@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:375:\"Hi Ms. Cody! I am possibly looking for a 2-3 bedroom rental or home to purchase for my children and myself. I\\\'d like to pursue renting first, but I realize there are very limited options in Stanly County. There are a lot of things up in the air for my family currently, but Stacy Hicks recommended that I reach out to you so I could be on your radar. Thank you! - Emily Furr\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-02-25 00:06:56'),(27,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Sherry Jones\";s:5:\"email\";s:22:\"sjones201964@gmail.com\";s:5:\"phone\";s:10:\"7046779424\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:108:\"Hi Kim Sadler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-02-25 06:59:50'),(28,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Samantha Hower\";s:5:\"email\";s:25:\"sam@thehillgrouptriad.com\";s:5:\"phone\";s:10:\"3365963007\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:207:\"Hi Donna,\r\nI am Samantha with Joshua Mitchell Real Estate. I have a client interested in 105 Hasty Hill Rd. It is not in our MLS, they would like to see the home soon. Look forward to speaking with you soon.\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-04 09:10:49'),(29,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:18:\"Andrew R Burgesser\";s:5:\"email\";s:22:\"bluedogexcel@yahoo.com\";s:5:\"phone\";s:10:\"7045508801\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:222:\"Hi Brenda Bingham, I wanted to get some information regarding the 10 acre parcel for sale on Cold Springs Road. I know it was pending sale, then listed again, can you advise if there was an issue with the land? Thank you. \";s:8:\"agent_id\";s:4:\"1520\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-25 00:11:04'),(30,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Ben Moss\";s:5:\"email\";s:24:\"ben.rubberduck@gmail.com\";s:5:\"phone\";s:12:\"980-284-3393\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:556:\"Hi Sherri,\r\n\r\nMy name is Ben Moss, owner of Rubber Duck Trucking, provider of land clearing, grading and demo services.  \r\n\r\nI’ve learned that you’re representing the buyer for the 16.6 acres on hwy 152.   I would love the opportunity of connecting with you and/or your buyer with regards to our services. Would you be willing to share my contact information below with them?\r\n\r\n(980) 284-3393\r\nBen.RubberDuck@gmail.com\r\n\r\nI greatly appreciate your time and any consideration you allow me. \r\n\r\nCongrats on being  under contract!\r\n\r\nKind Regards,\r\n\r\nBen\";s:8:\"agent_id\";s:4:\"1408\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-26 22:07:37'),(31,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:25:\"Jessica and David English\";s:5:\"email\";s:21:\"jhenglish88@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:175:\"Hi Donna Hiner, I heard from a friend about a property you are listing by the end of the week on Old Mill Rd. I believe the address is 20255. Can you tell me the asking price?\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-30 05:25:30'),(32,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:4:\"Test\";s:5:\"email\";s:15:\"hello@gmail.com\";s:5:\"phone\";s:12:\"704-555-9876\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-03-31 03:14:47'),(33,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Jorge Torres\";s:5:\"email\";s:21:\"junkexremoval@aol.com\";s:5:\"phone\";s:10:\"9804441918\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:900:\"Whether you buy investment properties, or manage existing properties, Junk-Ex Removal can help you today! We work with real estate investors who need to clean up a property before flipping it and also property management companies to keep their properties junk and debris free.  Junk-Ex Removal would love to partner with you to ensure your properties are making a great impression! \r\n\r\nWe specialize in working with Real Estate Professionals, Bank/Foreclosure Actions, Estate Clean-Outs, Investors and House-Flippers!\r\n\r\nServing Charlotte and the surrounding area. Experienced, reliable, ethical and reasonably priced. Family owned business. Licensed and insured in NC.\r\n\r\nFREE ESTIMATES!\r\n\r\nCheck us out at www.JunkExRemoval.com or contact me today for more information at 980-444-1918. Thank you for your consideration.\r\n\r\nJorge Torres\r\n980-444-1918\r\nJunkexremoval@aol.com\r\nwww.JunkExRemoval.com\r\n\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-04-19 23:32:15'),(34,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Jorge Torres\";s:5:\"email\";s:21:\"junkexremoval@aol.com\";s:5:\"phone\";s:10:\"9804441918\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:26:\"contact@lantern-realty.com\";s:8:\"agent_id\";s:3:\"416\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-04-19 23:33:50'),(35,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Jorge Torres\";s:5:\"email\";s:21:\"junkexremoval@aol.com\";s:5:\"phone\";s:10:\"9804441918\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:900:\"Whether you buy investment properties, or manage existing properties, Junk-Ex Removal can help you today! We work with real estate investors who need to clean up a property before flipping it and also property management companies to keep their properties junk and debris free.  Junk-Ex Removal would love to partner with you to ensure your properties are making a great impression! \r\n\r\nWe specialize in working with Real Estate Professionals, Bank/Foreclosure Actions, Estate Clean-Outs, Investors and House-Flippers!\r\n\r\nServing Charlotte and the surrounding area. Experienced, reliable, ethical and reasonably priced. Family owned business. Licensed and insured in NC.\r\n\r\nFREE ESTIMATES!\r\n\r\nCheck us out at www.JunkExRemoval.com or contact me today for more information at 980-444-1918. Thank you for your consideration.\r\n\r\nJorge Torres\r\n980-444-1918\r\nJunkexremoval@aol.com\r\nwww.JunkExRemoval.com\r\n\";s:8:\"agent_id\";s:3:\"416\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-04-19 23:34:15'),(36,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Joel Disselkoen\";s:5:\"email\";s:17:\"jstynnc@gmail.com\";s:5:\"phone\";s:10:\"7047738016\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:115:\"Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"620\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-06 06:20:34'),(37,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Ann Dixon\";s:5:\"email\";s:22:\"bizcorp10140@yahoo.com\";s:5:\"phone\";s:10:\"7046659292\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:246:\"Hi Jeremy Aldridge, I have seen that you were the listing agent on the property at 276 Elm Avenue Concord Avenue 28025 I want to know if this property was still available ? Can you give me a call or text me at your earliest convenience thank you.\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-06 07:40:45'),(38,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Jessica Owenby\";s:5:\"email\";s:17:\"jrowenby@live.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:169:\"Hi Katherine, I saw a for sale sign on Zion Hill Road in Marion for a piece of land that I would like info on. I’m not sure of the address. It is near Wilson Farm Rd. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-10 03:38:41'),(39,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Jessica Owenby\";s:5:\"email\";s:17:\"jrowenby@live.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:169:\"Hi Katherine, I saw a for sale sign on Zion Hill Road in Marion for a piece of land that I would like info on. I’m not sure of the address. It is near Wilson Farm Rd. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-10 03:39:02'),(40,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Mark MacLaughlin\";s:5:\"email\";s:26:\"Mark.maclaughlin@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:538:\"Hello Cheyenne! I’ve been keeping an eye on your listing at 530 Waters Rd #16, Salisbury, NC. I was wondering if you might be able to provide any additional information that might not be in the listing. Restrictions, docking permitting, HOA immediate requirements? We’re located in SWFL, but have been eyeing some potential properties in your area. Specifically, we’re looking at lakefront’s in the region which we would like purchase and then wait a few years to build a main structure. Email is best. Thanks for your assistance!\";s:8:\"agent_id\";s:3:\"822\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-12 07:13:09'),(41,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Ron Hainsey\";s:5:\"email\";s:19:\"ronbo4355@gmail.com\";s:5:\"phone\";s:10:\"9107701962\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:219:\"Hi Kim,\r\nMy wife and I are considering selling, we live three doors\r\ndown where you used to live (#614 Maple Ridge Cir).  Can you send me your terms, rates, so forth ? I look forward to hearing from you.\r\n\r\nRon & Denise\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-13 23:00:45'),(42,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Missy Bowers\";s:5:\"email\";s:23:\"Missy@beyourbestinc.com\";s:5:\"phone\";s:12:\"770 335 7680\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:212:\"Hi Katherine Lawing, \r\n\r\nI saw your listing for 94 Foxberry Lane #77 in Murphy, NC and I had a couple of questions.  Can I rent this when we are not using it as our second home?  What type of view does it have?  \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-18 22:52:06'),(43,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Randy E Aldridge\";s:5:\"email\";s:31:\"randyaldridge@strmechanical.com\";s:5:\"phone\";s:10:\"7046156833\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:226:\"Hi Jeremy Aldridge, I checked on the home for sale at 66 Valley View, Banner Elk. Apparently the builder has this listed with an agent. Could you review, give me your opinion and give me a call to discuss a possible offer...??\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-25 04:16:15'),(44,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Darrell Jones jr\";s:5:\"email\";s:33:\"Different.Frequency.llc@gmail.com\";s:5:\"phone\";s:10:\"5164012288\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:109:\"Hi Donna Hiner, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-25 21:30:26'),(45,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Darrell Jones jr\";s:5:\"email\";s:33:\"Different.Frequency.llc@gmail.com\";s:5:\"phone\";s:10:\"5164012288\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:114:\"Hi Donna Hiner, I was interested in presenting your property 12808 N Tryon Hwy, Charlotte, NC 28262 to my buyers. \";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-05-25 21:31:43'),(46,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Christina\";s:5:\"email\";s:19:\"cfaust941@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:206:\"Hello Julie,\r\n\r\nI am interested in a property you have listed at 0 Deep Gap Rd, Whittier, NC 28789. Could you please send me the build restrictions and CCRs for the subdivision. \r\n\r\nThank you,\r\n\r\nChristina \";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-23 08:18:41'),(47,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Terry Blue\";s:5:\"email\";s:18:\"tblue982@gmail.com\";s:5:\"phone\";s:10:\"7044258374\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:177:\"Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n49709 Quail Trail Rd, Norwood, NC 28128 I would like to review. \";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-24 19:10:19'),(48,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Terry Blue\";s:5:\"email\";s:18:\"tblue982@gmail.com\";s:5:\"phone\";s:10:\"7044258374\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:177:\"Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n49709 Quail Trail Rd, Norwood, NC 28128 I would like to review. \";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-24 19:11:26'),(49,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"stephen ellis\";s:5:\"email\";s:32:\"stephen@ellisdevelopments.com.au\";s:5:\"phone\";s:10:\"8054053263\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:51:\"Call me Re concord land for sale prices at $2.7mil \";s:8:\"agent_id\";s:3:\"553\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-24 22:26:30'),(50,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Christa Hartsell\";s:5:\"email\";s:20:\"cphartsell@gmail.com\";s:5:\"phone\";s:10:\"9106121767\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:72:\"Hi, would like to make an offer on a home on Quail Trail Rd , Norwood.  \";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-06-26 09:07:47'),(51,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"christina Howard\";s:5:\"email\";s:24:\"christina.idol@yahoo.com\";s:5:\"phone\";s:10:\"3368703527\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:147:\"Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted more information on the 1.25 acres listed on cold springs road. \";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-06 20:19:55'),(52,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Daniel Lewis\";s:5:\"email\";s:26:\"lewislawncareahi@gmail.com\";s:5:\"phone\";s:10:\"9804323026\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:561:\"Good morning,\r\n\r\nI am writing to inquire about your lawn care and property repair contracts for both commercial and residential listings.  \r\n\r\nWe are a locally owned company and are interested in submitting a bid for any current or upcoming properties you may have available. We cover all forms of lawn care needs as well as all home repairs. A POI can be submitted upon request.\r\n\r\nPlease let me know if you have any further questions or are in need of services. We can be reached at 980-432-3026.\r\n\r\nThank you,\r\n\r\nBethany Lewis\r\nDaniel Lewis\r\nLewisLawnCareAHI\";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-06 23:59:39'),(53,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"James Walthall\";s:5:\"email\";s:17:\"arlcuts@gmail.com\";s:5:\"phone\";s:10:\"7049043527\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:136:\"Hi Katherine Lawing, I was riding down cold springs rd today and saw a couple of 10 acre tracts for sale. I would like any info you have\";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-07 02:54:17'),(54,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Fred J. Allen Jr.\";s:5:\"email\";s:18:\"Fredjallen@msn.com\";s:5:\"phone\";s:10:\"7047917288\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:294:\"Hi Sandi Laney, Remember Fred & Jayne  Allen,  the land on Beaver Rd in China Grove? You probably never saw finished home. We would like you to look and see what you think it\\\'s worth. \r\nWould value your opinion. \r\nLet me know what you would charge to look it over.\r\nBest Regards;\r\nFred & Jayne\";s:8:\"agent_id\";s:3:\"427\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-09 08:41:09'),(55,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Mary Boyles\";s:5:\"email\";s:20:\"marylboyes@yahoo.com\";s:5:\"phone\";s:12:\"704-363-3655\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:397:\"Tony Overcash gave me your name. We are planning on moving back to Concord/Kannapolis area and are needing a good agent to get us there. We are currently living in Mt. Airy, NC but are ready to get back to the area we lived for many years until we moved to take care of our parents until their passing. You can reach me on my cell at 704-363-3655. Thank you and I look forward to hearing from you.\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-13 21:29:33'),(56,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Mary Boyles\";s:5:\"email\";s:20:\"marylboyes@yahoo.com\";s:5:\"phone\";s:12:\"704-363-3655\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:397:\"Tony Overcash gave me your name. We are planning on moving back to Concord/Kannapolis area and are needing a good agent to get us there. We are currently living in Mt. Airy, NC but are ready to get back to the area we lived for many years until we moved to take care of our parents until their passing. You can reach me on my cell at 704-363-3655. Thank you and I look forward to hearing from you.\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-13 21:29:49'),(57,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Russell Walthall\";s:5:\"email\";s:17:\"arlcuts@gmail.com\";s:5:\"phone\";s:10:\"7049043527\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:70:\"Looking at lots off cold spring rd in midland locust area or off of 49\";s:8:\"agent_id\";s:4:\"1520\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-07-27 23:11:55'),(58,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:21:\"Robert & Lori Edwards\";s:5:\"email\";s:28:\"thankinghimdaily17@gmail.com\";s:5:\"phone\";s:10:\"3364736046\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:463:\"Hello Mr. Aldridge,\r\n\r\nMy husband, Robbie, and I are the neighbors to the Redwood Drive house in Mocksville that you\\\'re selling. Yes, the ones with the playset in the front yard, lol. We see what an amazing job you did with the Watson\\\'s home and we were wondering if, when we\\\'re ready, you\\\'d be interested in flipping our house too?\r\nAlso, our 2 older boys would like to keep the yard next door mowed for you until the house sells.\r\n\r\nThank you,\r\nLori Edwards\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-03 07:32:05'),(59,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:19:\"Granita Ashley Deas\";s:5:\"email\";s:20:\"foxxyheart@yahoo.com\";s:5:\"phone\";s:10:\"7043108985\";s:9:\"user_type\";s:13:\"I\'m a tennant\";s:7:\"message\";s:110:\"Hi Rodney Queen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"834\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-05 16:47:26'),(60,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"eric perry\";s:5:\"email\";s:29:\"supplementailemail1@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:196:\"Hi Tammy Fox, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. I\\\'m wondering how much our home is worth at 1402 Brantley rd in Kannapolis? Thank you.\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-08 03:55:41'),(61,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"eric perry\";s:5:\"email\";s:28:\"supplementalemail1@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:73:\"Hi Tammy--sorry to waste your time--I found my answer. Thank you.\r\n\r\nEric\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-08 05:39:00'),(62,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Sarah Siddique\";s:5:\"email\";s:19:\"kostenfam@gmail.com\";s:5:\"phone\";s:10:\"7046160723\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:186:\"Hello,\r\nI’d like to see if I can come view the following property when it comes available for showing soon: \r\n1019 Mistywood Lane, Concord, NC.  \r\n\r\nThank you!\r\nSarah & Noman Siddique \";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-12 05:34:27'),(63,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:20:\"Christine Laramee MD\";s:5:\"email\";s:20:\"clarameemd@gmail.com\";s:5:\"phone\";s:10:\"7276393962\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:131:\"Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans! \";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-16 21:56:30'),(64,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:20:\"Christine Laramee MD\";s:5:\"email\";s:20:\"clarameemd@gmail.com\";s:5:\"phone\";s:10:\"7276393962\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:131:\"Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans! \";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-16 21:56:49'),(65,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:20:\"Christine Laramee MD\";s:5:\"email\";s:20:\"clarameemd@gmail.com\";s:5:\"phone\";s:10:\"7276393962\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:131:\"Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans! \";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-16 21:56:57'),(66,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Mia ONeil\";s:5:\"email\";s:17:\"arbri56@yahoo.com\";s:5:\"phone\";s:10:\"8284174819\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:285:\"Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. There is a piece of land off Zion hill road marion NC, between Wilson farm drive and Hardrock road. I was wondering how much land and the price.  Thanks.  Please email. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-08-17 00:55:53'),(67,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Michael Helms\";s:5:\"email\";s:23:\"jmichaelhelms@gmail.com\";s:5:\"phone\";s:10:\"7046347432\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-09-09 18:04:47'),(68,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Alicia Thomas\";s:5:\"email\";s:24:\"atkinsalicia85@gmail.com\";s:5:\"phone\";s:10:\"7049616778\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-09-10 11:43:50'),(69,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Cristy Morgan\";s:5:\"email\";s:20:\"cristy0357@yahoo.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:410:\"Hi Evonne Caudill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help I am Ryan and Skylar\\\'s mom and I am looking somewhere between Oakboro and Concord I found this property I didn\\\'t know if I could possible look at it or if you could find more properties   2281 Munsen Rd | $189,999 | 3 Beds 2 Baths you can just email me back I phone is not working at the moment.\";s:8:\"agent_id\";s:3:\"549\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-09-14 11:06:39'),(70,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Karen\";s:5:\"email\";s:12:\"kfran@me.com\";s:5:\"phone\";s:12:\"919-802-7512\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:414:\"Hi Lynnette, i was looking at the land on 6770 zion church road, concord. The listing says it has a WSACC outfall crossing it. Does this mean a sewer line crosses the property? Do you have a platt to show where this line is? Any other contor maps or flood plains that you can send me? We live in Chapel Hill and are interested in the property but would like these questions answered before we drive down. Thank you\";s:8:\"agent_id\";s:3:\"393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-09-24 08:45:58'),(71,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"David pratt\";s:5:\"email\";s:17:\"dpconcord@aol.com\";s:5:\"phone\";s:10:\"7047962193\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:219:\"Murray location \r\nIs the water deep enough for a pontoon. I’ve seen how the dock is tied to a tree I know it needs repair. But do you know how deep it is at the end of the cove?\r\nThanks \r\n\r\nSent from my iPhone\r\nDavid \";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-06 02:29:30'),(72,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Lara O’Guin\";s:5:\"email\";s:22:\"laraoguin117@gmail.com\";s:5:\"phone\";s:12:\"704-798-3553\";s:9:\"user_type\";s:13:\"I\'m a tennant\";s:7:\"message\";s:277:\"Hi Paula! My husband Jared and I are currently living in Salisbury, and we are looking to sell in hopes of purchasing some land to build our forever home on! I can be reached by email or by phone any time of day. Thank you for your time and I look forward to speaking with you!\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-10 20:33:16'),(73,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Kristin Beach\";s:5:\"email\";s:27:\"luckydoglanddeals@gmail.com\";s:5:\"phone\";s:10:\"6155892494\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1166:\"I am an investor with these properties under contract to purchase. My contract allows me to market it for sale on the MLS with plans of simultaneously closing. I\\\'ve already run a preliminary report with title and it is clear to close. At this time, I would like to bring on a real estate agent. I can offer to pay 6% commission with 3% to go to the seller\\\'s agent and 3% to the buyer\\\'s agent. Below, please find the APN, address and name on deed.  Please review and let me know your thoughts. I mainly need help to: \r\n1) Field phone calls from prospective buyers and get it under contract\r\n2) Oversee the property on sight: make recommendations, flag corners, put up a sign\r\n3) Assistance with contract to close arrangements via the title agent: Infinity Abstract and Title\r\n4) Property Marketing\r\n\r\n Acres / APN / Location / State / Name on Deed\r\nProperty #1:\r\nAcres: 7.44\r\nAPN: 6681-00-87-1168\r\nLocation: LONG CREEK LN - BRYSON CITY, NC 28713 \r\nCounty: NC-SWAIN COUNTY\r\nName on Deed: Patrick Ross\r\n\r\nProperty #2:\r\nAcres: 12\r\nAPN: 6683-00-59-9654\r\nLocation: GOVERNORS ISLAND RD - BRYSON CITY, NC 28713\r\nCounty: NC-SWAIN COUNTY\r\nName on Deed: Kenneth Woods\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-19 00:54:48'),(74,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Ioana Workman\";s:5:\"email\";s:22:\"ioanaworkman@gmail.com\";s:5:\"phone\";s:12:\"321-652-5596\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-19 07:53:38'),(75,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"William Bass\";s:5:\"email\";s:19:\"wbass1968@gmail.com\";s:5:\"phone\";s:10:\"7042231832\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:113:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-22 06:08:48'),(76,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:32:\"Denise Pate-SisBro Ventures, llc\";s:5:\"email\";s:22:\"denisepate42@gmail.com\";s:5:\"phone\";s:12:\"843-601-2595\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:208:\"Hi Tammy,\r\nWas stunned to learn you had left APM but hope you are doing well in this new endeavor. Would like to speak to you concerning value/listing on one of the houses. Call when you have a moment. Thanks\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-26 05:25:14'),(77,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:32:\"Denise Pate-SisBro Ventures, llc\";s:5:\"email\";s:22:\"denisepate42@gmail.com\";s:5:\"phone\";s:12:\"843-601-2595\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:208:\"Hi Tammy,\r\nWas stunned to learn you had left APM but hope you are doing well in this new endeavor. Would like to speak to you concerning value/listing on one of the houses. Call when you have a moment. Thanks\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-26 05:25:26'),(78,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Alicia woodward\";s:5:\"email\";s:27:\"Aliciadrealestate@gmail.com\";s:5:\"phone\";s:10:\"7042240448\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:116:\"Hi Deana Petty, I spoke with an agent at Latern and would love to learn more about you offer your agents! Thank you!\";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-10-28 03:14:12'),(79,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Joe Hicks\";s:5:\"email\";s:23:\"buffettmanjoe@gmail.com\";s:5:\"phone\";s:12:\"704-572-2660\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:177:\"65Willow St. \r\nHey Paige. I forgot to ask about when Don plans on changing utilities over to him. I don’t want to cut them off before he has a chance to put them in his name. \";s:8:\"agent_id\";s:4:\"1507\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-11-04 01:41:36'),(80,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Bill Birckhead\";s:5:\"email\";s:23:\"billbirckhead@gmail.com\";s:5:\"phone\";s:12:\"704-490-1600\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:281:\"Hi Jeremy Aldridge\r\n\r\n◦ I\\\'m very interested in this property but see it has a Pending offer. If this offer falls through or if I can make an offer on it please let me know. I have cash and,or financing already approved. \r\nThank you\r\nBill\r\n\r\n8614 State Highway 89 W\r\nWestfield NC\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-11-06 03:55:11'),(81,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Austin Burleson\";s:5:\"email\";s:28:\"furrlindsey_030189@yahoo.com\";s:5:\"phone\";s:10:\"7044386787\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:467:\"Hey Jody,  its Austin at 888 Sorrel Lane Oakboro Sean Blacks son.  We are weighing options of possibly selling our home and would like to know if you have a round about idea of what it would bring in the current market.  We have added a Fireplace, laminet flooring, quartz countertops, fenced in back yard, large deck, and porched in area.  The rest of the house is stock I guess you could say.  Let me know what you think when you have a minute.\r\n\r\nThanks,\r\n\r\nAustin\";s:8:\"agent_id\";s:3:\"598\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-11-12 01:06:34'),(82,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Ray Holt\";s:5:\"email\";s:19:\"ray.holt@holtnc.com\";s:5:\"phone\";s:12:\"704.634.9591\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:200:\" Chris,\r\nI am looking for larger pieces of land served by municipal water and sanitary sewer in Salisbury.  Would you either help me or refer me to your land broker?\r\n\r\nThank you for your help.\r\n\r\nRay\";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-01 05:27:34'),(83,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:4:\"TEST\";s:5:\"email\";s:14:\"test@gmail.com\";s:5:\"phone\";s:10:\"7045551234\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:113:\"Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-01 22:56:32'),(84,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Patricia Campbell\";s:5:\"email\";s:26:\"glory_grace@windstream.net\";s:5:\"phone\";s:10:\"7048551823\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:226:\"Hi Lynnette.\r\n\r\nWe are interested in your listing at 201 JACKSON STREET, MOUNT PLEASANT, NC 28124.  Are there any pictures of the inside?  We\\\'re planning on downsizing early next year and are now looking seriously.\r\n\r\nThanks.\";s:8:\"agent_id\";s:3:\"393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-09 05:14:37'),(85,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Juan Almaras\";s:5:\"email\";s:22:\"juanalmaras6@gmail.com\";s:5:\"phone\";s:10:\"9805655595\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:335:\"Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in advice and guidance into buying a home. I have heard great things about you from families that you have helped in their process of buying their new homes. Thank you for your time it is greatly appreciated. \r\n\r\nGod Bless. \";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-10 08:10:35'),(86,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Juan Almaras\";s:5:\"email\";s:22:\"juanalmaras6@gmail.com\";s:5:\"phone\";s:10:\"9805655595\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:373:\"Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in starting to make plans for buying a home as well as guidance and advice. We have heard great things about you helping families in the community by making their dreams come true with their new home. \r\n\r\nGod Bless and thank you\r\n- Juan Almaras y Lisa Navarrete \";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:20:43'),(87,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Juan Almaras\";s:5:\"email\";s:22:\"juanalmaras6@gmail.com\";s:5:\"phone\";s:10:\"9805655595\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:373:\"Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in starting to make plans for buying a home as well as guidance and advice. We have heard great things about you helping families in the community by making their dreams come true with their new home. \r\n\r\nGod Bless and thank you\r\n- Juan Almaras y Lisa Navarrete \";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:21:29'),(88,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:28:52'),(89,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:29:30'),(90,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:30:25'),(91,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"528\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:31:25'),(92,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"788\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:32:01'),(93,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"380\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:32:41'),(94,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"549\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:33:22'),(95,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2169\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:33:53'),(96,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:34:47'),(97,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"801\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:35:25'),(98,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"383\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:36:16'),(99,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 03:37:47'),(100,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1510\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:08:53'),(101,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"645\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:09:29'),(102,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2082\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:10:16'),(103,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2171\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:10:45'),(104,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:11:19'),(105,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2165\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:11:59'),(106,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"553\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:12:42'),(107,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"814\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:20:12'),(108,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2167\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:21:46'),(109,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:22:19'),(110,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:22:45'),(111,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2163\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:23:19'),(112,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"555\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:23:53'),(113,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"390\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:24:25'),(114,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"476\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:24:52'),(115,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"819\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:25:26'),(116,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"503\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:26:08'),(117,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"2086\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:27:20'),(118,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"424\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:28:14'),(119,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"825\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:28:50'),(120,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"427\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:29:31'),(121,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:30:12'),(122,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"481\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:30:41'),(123,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"400\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:31:47'),(124,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:3:\"828\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:32:50'),(125,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Jami Eager\";s:5:\"email\";s:29:\"jeager@concordlakeacademy.org\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1694:\"Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.\r\n\r\n\";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-16 04:33:24'),(126,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Dana Coulston\";s:5:\"email\";s:23:\"dana.coulston@yahoo.com\";s:5:\"phone\";s:10:\"8436942577\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:345:\"Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help I seen that 805 Gold Hill Ave in Rockwell is about to come available and I really love it and it is in my kids school district so was wondering when is it available to look at? If you could let me know that would be great thanks!\";s:8:\"agent_id\";s:3:\"620\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2021-12-21 03:13:04'),(127,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:9:\"Sean Ryan\";s:5:\"email\";s:18:\"sjryan@charter.net\";s:5:\"phone\";s:10:\"8283183041\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:236:\"Hi Doreen,\r\nMy wife and I are interested in your listing at 3 Northview Ln. We were wondering when the listing would be active and when we could schedule a showing. She is a licensed agent with Carolina Mountain sales. \r\n\r\nThanks,\r\nSean\";s:8:\"agent_id\";s:4:\"2029\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-06 22:49:01'),(128,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Cierra Young\";s:5:\"email\";s:22:\"cicinicole88@gmail.com\";s:5:\"phone\";s:10:\"9803308622\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:152:\"Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help with a property I saw listed for sale. \";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-12 05:49:25'),(129,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Michele Bailey\";s:5:\"email\";s:30:\"cookingwithmichele@hotmail.com\";s:5:\"phone\";s:10:\"7047017128\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:361:\"Hi Karie Arem, I saw your profile on Lantern Realty and Development and wanted to see if I can get some help. I have found a home I am interested in. I have not been preapproved and not really sure what steps to take. I was given your information from Nathan Yon whose brother in Law David Earnhardt used you and gave me your name. I hope to hear from you soon.\";s:8:\"agent_id\";s:4:\"2023\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-22 03:16:28'),(130,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:42:\"Toby Russell with north group real estate.\";s:5:\"email\";s:22:\"tobymrussell@gmail.com\";s:5:\"phone\";s:10:\"3366891702\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:169:\"Hi Brianne, I had a client looking at 707 Frontier cir. I’m not in your mls but could you tell me if you have the room sizes on it and are there any deed restrictions?\";s:8:\"agent_id\";s:3:\"563\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-24 21:45:34'),(131,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Erica Zimmerman\";s:5:\"email\";s:18:\"ezimm930@gmail.com\";s:5:\"phone\";s:10:\"5164298275\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:477:\"Hi April, my friend Christina Tepedino gave me your phone number. I currently live on Long Island in New York with my husband and son but we wanted to start looking down in North Carolina and possibly South Carolina to\r\nGet an idea on areas; my husband retires in two years and we are done with NY lol. \r\nWe really don’t know any areas down there—we are looking to be more rural with more land. And a good school district…Would you be able to help us?\r\n\r\nThanks! \r\nErica \";s:8:\"agent_id\";s:3:\"565\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-29 07:45:35'),(132,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Devon Goolsby\";s:5:\"email\";s:21:\"dgoolsby624@gmail.com\";s:5:\"phone\";s:10:\"7046173114\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:408:\"Hi Sherri Wiles Argabright, I was recommended to reach out to you as I start my home search in the Concord/Kannapolis area! I am a first-time home buyer. I am moving from Hickory, NC to the Concord/Kannapolis area around June and looking to buy. I am preferably looking to settle in the Kannapolis area. \r\n\r\nI would love to chat and see if working together would be a good fit! \r\n\r\nThank you! \r\nDevon Goolsby\";s:8:\"agent_id\";s:4:\"1408\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-01-31 09:14:56'),(133,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Michael Key\";s:5:\"email\";s:22:\"michaelkey24@yahoo.com\";s:5:\"phone\";s:12:\"704-640-9767\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:156:\"Hi Pam Lambert, I saw your name on a sign in our development. You actually helped us buy our first home. We are looking for a change and hope you can help. \";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-06 09:21:34'),(134,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Karen Petersen\";s:5:\"email\";s:27:\"kpetersen@healyrealtors.com\";s:5:\"phone\";s:10:\"6097581776\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:556:\"Hi Conard Haywood, I saw your listing at 2300 Heritage and wanted to see if i can get some help. I am a realtor with Berkshire Hathaway Home Services Healy Realtors in NJ, and I am looking for a new home for our extended family in the Concord area. I was wondering if this property has any other photos, mostly of the inside of the home? Also, do you know why the previous deal fell through? I am not looking to subdivide, but clear the land and build a small horse farm, so if you can explain the property lines it would also be helpful. Thanks! God bless\";s:8:\"agent_id\";s:3:\"814\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-10 09:03:24'),(135,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Chase Winslow\";s:5:\"email\";s:23:\"chasewinslow1@gmail.com\";s:5:\"phone\";s:10:\"3363838275\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:292:\"Hi Melissa, I am extremely interested in a property that you have just listed in Lake James.  If you can please give me a call at your earliest convenience, that would be much appreciated.  My cell is 336-383-8275, you are welcome to call me at any time.  I look forward to speaking with you!\";s:8:\"agent_id\";s:3:\"579\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-11 10:04:50'),(136,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Kimberly Sanchez\";s:5:\"email\";s:16:\"kpv237@gmail.com\";s:5:\"phone\";s:10:\"3862906696\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:215:\"Hi Kim Sadler, I saw a property that you are currently showing (255 Winding Way, Salisbury, NC 28147). I am interested, and wondering what the current status of the property is. Please reach out at your convenience.\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-14 03:07:26'),(137,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:19:\"Stephanie Stallings\";s:5:\"email\";s:25:\"stephaniemkuntz@gmail.com\";s:5:\"phone\";s:10:\"5714201889\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:353:\"Hi Kelly!\r\n\r\nI was given your info from my cousin Sydney Falls! We are looking into moving to Kannapolis in a little less than a year. we are considering new builds but want some help in that contract process (looking for fixed contracts) and just some general info on the area and what the next year might look like. \r\n\r\nlooking forward to connecting! \";s:8:\"agent_id\";s:3:\"836\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-15 04:17:14'),(138,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:19:\"Stephanie Stallings\";s:5:\"email\";s:25:\"stephaniemkuntz@gmail.com\";s:5:\"phone\";s:10:\"5714201889\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:353:\"Hi Kelly!\r\n\r\nI was given your info from my cousin Sydney Falls! We are looking into moving to Kannapolis in a little less than a year. we are considering new builds but want some help in that contract process (looking for fixed contracts) and just some general info on the area and what the next year might look like. \r\n\r\nlooking forward to connecting! \";s:8:\"agent_id\";s:3:\"836\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-15 04:17:24'),(139,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:23:\"Sandy Rivera (Braswell)\";s:5:\"email\";s:22:\"diepparivera@gmail.com\";s:5:\"phone\";s:10:\"7045165448\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:697:\"Hi Deana, It\\\'s Sandy. I need advice and, of course, you\\\'re the first person I\\\'m turning to. Our renter, Faye Brown, passed away last month at the age of 99 ... just 2 months shy of her 100th birthday. We loved her and will miss her. Now I need to decide what to do:  stay in my side of the duplex, renovate and rent out the other side; or do some repairs to both sides and sell. (Selling and buying may be tough right now; property values have increased a lot!)  Could you please call me to advise and help me make a decision on what\\\'s best for me at this time?  My number is 704-516-5448. Would be nice to talk to you about the duplex and your family, kids, Melanie and Ricky.  Regards, Sandy\";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-18 00:37:17'),(140,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Joseph Steele\";s:5:\"email\";s:25:\"joseph.w.steele@gmail.com\";s:5:\"phone\";s:10:\"5615076065\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:109:\"Hi Liz Hallman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-23 06:34:32'),(141,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Mike Davis\";s:5:\"email\";s:13:\"mike.d@kw.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:99:\"Hey Courtney. Regarding your listing at 494 Vera Drive. Does it have a crawl space?\r\n\r\nThanks, Mike\";s:8:\"agent_id\";s:4:\"1449\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-02-26 03:27:50'),(142,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"wendy compton\";s:5:\"email\";s:21:\"comptonw777@gmail.com\";s:5:\"phone\";s:10:\"8432901840\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:273:\"Hi Jeremy Aldridge, I am looking for your cleaning service for my airbnb now. We emailed before and I had someone else that wanted to do this from my family. They have become very busy and I need additional help. If you are still interested please email me. \r\nThanks, Wendy\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-03 22:31:27'),(143,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Jennifer\";s:5:\"email\";s:20:\"jennifer@femexec.com\";s:5:\"phone\";s:12:\"910 431 6334\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:42:\"I am interested in 17356 Randall\\\'s ferry.\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-04 11:43:03'),(144,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Robert Schupp\";s:5:\"email\";s:24:\"slyweasl@carolina.rr.com\";s:5:\"phone\";s:30:\"704-469-5656 (VP) for the deaf\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:914:\"Hi Deanna Miltz, I am the treasurer for Oakleaf Homeowners Assn. I spoke with Anita Camphen ?(spelling may be incorrect due to her cursive writing) . Anyway I’m contacting you to see if your agency contacted our HOA and IF a “right-of-first-refusal” form was signed between Anita and our President Patrick Brown before the closing ? Also I was not informed of this sale and as such I was not given the opportunity to send and invoice of 200.00 accessed to the BUYER for a “document fee” according to our by-laws . Can you reply by email please if these 2 transactions were completed before the closing on unit 617 Camrose Circle NE , Concord NC 28025 . If I don’t hear from you then I’ll contact Knipp Law Office at their address and phone number to verify what exactly was done prior to the sale of this unit which was sold by Jim & Willene Price. Thank you for your time and help …. Robert Schupp\";s:8:\"agent_id\";s:3:\"558\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-10 04:38:24'),(145,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Anon Ymous\";s:5:\"email\";s:16:\"Voodoo@yahoo.com\";s:5:\"phone\";s:12:\"704-567-9125\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:446:\"Hi Jerry,\r\n\r\nThought I\\\'d let you know(since you\\\'re not smart enough to figure it out) that you missed the absolute best offer you would have received on a Concord home for sale that ended yesterday(3.13.22) only because of your arrogant, self-righteous, rude & \\\"that\\\'s the buyer\\\'s problem\\\" attitude!\r\n\r\nI\\\'m sure I\\\'m not the first person to tell you this & know I won\\\'t be the last!!! So say hello to lost opportunities & #instantkarma.\r\n\";s:8:\"agent_id\";s:4:\"1405\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-14 19:28:26'),(146,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Anon Ymous\";s:5:\"email\";s:16:\"Voodoo@yahoo.com\";s:5:\"phone\";s:12:\"704-567-9125\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:446:\"Hi Jerry,\r\n\r\nThought I\\\'d let you know(since you\\\'re not smart enough to figure it out) that you missed the absolute best offer you would have received on a Concord home for sale that ended yesterday(3.13.22) only because of your arrogant, self-righteous, rude & \\\"that\\\'s the buyer\\\'s problem\\\" attitude!\r\n\r\nI\\\'m sure I\\\'m not the first person to tell you this & know I won\\\'t be the last!!! So say hello to lost opportunities & #instantkarma.\r\n\";s:8:\"agent_id\";s:4:\"1405\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-14 19:28:35'),(147,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Louisa Casarez\";s:5:\"email\";s:21:\"lcasarez042@gmail.com\";s:5:\"phone\";s:10:\"7044601987\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:168:\"Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help, regarding a rental in Gastonia In Riverwood Planation \";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-15 20:23:02'),(148,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Khari D. Williams\";s:5:\"email\";s:19:\"Hondo1899@gmail.com\";s:5:\"phone\";s:10:\"7065339371\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:515:\"Hi Brittney Steele, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help locating an investment property. My name is Khari D. Williams and I am energetically looking for an investment property. I\\\'m seeking a Single-family or multi-family property with a price point between 60-200k. Willing to pay the higher end for a multi-family home.\r\n \r\nI have my pre-approval letter in hand and will forward you a copy if you are willing to work with me. \r\n\r\nThank you for your time\r\n\";s:8:\"agent_id\";s:4:\"2274\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-17 15:35:17'),(149,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Layne\";s:5:\"email\";s:25:\"lhinson8662@cms.k12.nc.us\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:15:\"Hi Grammy!!!!!!\";s:8:\"agent_id\";s:3:\"617\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-21 08:47:09'),(150,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Richard Ross\";s:5:\"email\";s:22:\"richardaross@yahoo.com\";s:5:\"phone\";s:11:\"18175646467\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:84:\"Hi Chris , is there a floorplan available for 508 Main St in Kannapolis?  Thank you!\";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-25 04:16:11'),(151,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Carol Harris\";s:5:\"email\";s:15:\"cah2451@aol.com\";s:5:\"phone\";s:10:\"7046401160\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:90:\"Hi Marguerite Keller, \r\nWe are very interested in the building lot located in Summerfield \";s:8:\"agent_id\";s:3:\"576\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-27 20:44:11'),(152,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Anjali Wilson\";s:5:\"email\";s:23:\"wilsonanjali0@gmail.com\";s:5:\"phone\";s:10:\"7047462778\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:332:\"Hi Deana, I’m a new agent looking into affiliating with your from the current one I am at. I actually work with Lissette in Concord office. She recommended I reach out to you as she’s pursuing her real estate license and get a little more information. I would love to hear back from you at your earliest convenience. Thank you! \";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-30 22:15:37'),(153,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:20:\"Brian & Natalie Gray\";s:5:\"email\";s:24:\"natalie.gray86@yahoo.com\";s:5:\"phone\";s:10:\"7042132450\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:133:\"Hi Kim Sadler, wanted to see if you could come look at our house 145 Winding Way Salisbury, NC 28147. We are thinking about selling. \";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-03-31 07:07:01'),(154,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Noah Malpass\";s:5:\"email\";s:22:\"noah.malpass@gmail.com\";s:5:\"phone\";s:10:\"4342037706\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:276:\"Hi Courtney! \r\nI saw your property on 2025 brewer rd and think it has a lot of potential for a flip. What can you tell me as far as any damages on the inside, motivation of the sellers, and how much the estimated ARV in that neighborhood would be?\r\n\r\nThank you\r\n\r\nNoah Malpass\";s:8:\"agent_id\";s:4:\"1449\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-04 17:24:02'),(155,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:18:\"Denise Louise Bump\";s:5:\"email\";s:16:\"denise@dbump.com\";s:5:\"phone\";s:10:\"3367849941\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:324:\"Good morning, Courtney.\r\nI am a real estate investor and saw one of your listings that I would be interested in seeing (2025 Brewer Rd). I have flipped 5 properties over the last few years and I have been looking for a new project. I would have a hard money lender for this project and provide a letter with proof of funds. \";s:8:\"agent_id\";s:4:\"1449\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-04 20:10:04'),(156,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Hunter Miller\";s:5:\"email\";s:27:\"hunter.miller87@outlook.com\";s:5:\"phone\";s:10:\"9803650502\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:223:\"Hi Jenna Cook, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. Extremely interested in the Rimer property. Would be a cash offer. We are scheduled to come Thursday am at 9 am. \";s:8:\"agent_id\";s:4:\"1393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-05 09:08:25'),(157,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Hunter Miller\";s:5:\"email\";s:27:\"hunter.miller87@outlook.com\";s:5:\"phone\";s:10:\"9803650502\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:262:\"Hi Liz Hallman, I saw your profile on LanterRealty and Development and wanted to see if i can get some help. I sent Jenna and email but extremely interested in the Rimer property. This would be a cash offer. Have an appointment at 9 am Thursday with my realtor. \";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-05 09:10:10'),(158,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Stephen Copeland\";s:5:\"email\";s:19:\"copes370z@gmail.com\";s:5:\"phone\";s:10:\"6785700689\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:417:\"Hi Brianne Watson, I saw your listing for 0 Cloud Top Ln, Mooresville, NC 28115, $199k, for 5.677 acres, and wanted to know if the seller would be will to split the parcel down the stream and sell half? I will offer $100k for the property, and may have a buyer for the other half. I am a real buyer, please let me know. Im in a meeting until noon, but free after. Lets work out a deal either way. Thank you,\r\n-Stephen\";s:8:\"agent_id\";s:3:\"563\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-07 09:44:27'),(159,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Michael King\";s:5:\"email\";s:30:\"TheKingSellsTheDream@gmail.com\";s:5:\"phone\";s:10:\"7044503936\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:75:\"Hi Wendell just wondering if you might have a few minutes to chat sometime?\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-08 04:44:47'),(160,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Michael King\";s:5:\"email\";s:30:\"TheKingSellsTheDream@gmail.com\";s:5:\"phone\";s:10:\"7044503936\";s:9:\"user_type\";s:12:\"I\'m an agent\";s:7:\"message\";s:75:\"Hi Wendell just wondering if you might have a few minutes to chat sometime?\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-08 04:50:01'),(161,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Wendy Roseman\";s:5:\"email\";s:22:\"wendyroseman@gmail.com\";s:5:\"phone\";s:12:\"336-807-0442\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:212:\"Hey Brianne, this is Wendy Roseman, Michael\\\'s mom. Michael tells me you have your realtors license. We have a piece of land across from where Michael and Laura live that we\\\'d like to talk to you about selling. \";s:8:\"agent_id\";s:3:\"563\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-10 05:07:03'),(162,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Tia Turner\";s:5:\"email\";s:23:\"tmturner70061@gmail.com\";s:5:\"phone\";s:10:\"8049821070\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:1583:\"YOUR BROKER COURTNEY HEDRICK.... BROKER IN CHARGE OF SPEEK, HER SON WILL KNOWINGLY AND DELIBERATELY SOLD ME A HOME IN WINSTON-SALEM WITH MOLD AND MILDEW AND DID NOT DISCLOSE IT. REALTORS SHOWING THE HOME TEXTED WILL WITH REMARKS AND PICS OF THE EVIDENCE. WILL\\\'S RESPONSE WAS \\\"THAT\\\'S INTERESTING.\\\" THE STATE IS INVESTIGATING MY COMPLAINT WE HAVE DOCUMENTAIION FROM REALTORS THAT WILL REFUSED TO LISTEN TO. HE COVERED THE MOLD PROBLEM UP!!!!\r\nHE FLED TO NYC AND I NOTIFIED HIS BOSS OF HIS DELIBERATE COVER UP AND SELLING ME THE HOME AS A DUAL AGENT WITH MOLD AND MILDEW, AND, THE FRIDGE, CHANDELIER AND COOKTOP WERE STOLEN. HIS EXPLANATION THEY SAWED THE LOCK BOX OFF AND CAME IN THE BASEMENT. WILL HEDRICK REFUSED TO DISCLOSE THE POLICE REPORT.\r\nHE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. I INFORMED HER OF THE GROSS NEGLIGENCE AND MISCONDUCT OF WILL WITH THE DETAILS AND DOCUMENTATION.\r\n\r\n HE WAS IMMEDIATLEY LET GO IN NYC BY THE CANDICE MILANO TEAM. MYSELF AN OTHER REALTORS TALKED TO THE BOSSES.\r\n\r\n HEDRICK DIDN\\\'T WANT OR ENCOURAGE ME TO HAVE AN INSPECTION. HE SAID RON AND HE WERE SO HAPPY I DID NOT DO AND INSPECTION.\r\n\r\nCOURTNEY HEDRICK WITH WILL ARE DISPICABLE REALTORS TO CON ME KNOWING THERE WAS MOLD AND MILDEW AND A HOST OF OTHER VERY, VERY, VERY BAD PROBLEMS. TOO MANY TO LIST.\r\n HEDRICK IS A VERY UNETHICAL, CON MAN AND THE REALTORS CONFIRMED THAT FACT. YOU SHOULD KNOW WHAT THE HEDRICK TEAM DOES TO SUCK MONEY OUT OF BUYERS, ABSOLUTELY TERRIBLE. HORRIBLE PEOPLE!!!!!! THE STATE AND LEGAL TEAM ARE INVESTIGATING THIS COUPLE ASSOCIATED WITH LANTERN REALTY.  \";s:8:\"agent_id\";s:3:\"114\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-12 07:27:22'),(163,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Tia Turner\";s:5:\"email\";s:23:\"tmturner70061@gmail.com\";s:5:\"phone\";s:10:\"8049821070\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:1544:\"PAULA,\r\nWILL HEDRICK A FORMER AGENT WITH YOUR AGENCY, AND COURTNEY HEDRICK ARE NOW IMPLICATED IN A STATE NC REAL ESTATE BOARD FOR NOT DISCLOSING MOLD/MILDEW/MOISTURE INTRUSION IN A HOME I BOUGHT FROM THEM IN JANUARY 2022. WILL WAS SEND TEXTS AND PICS BY REALTORS, IN PARTICULAR ROYDA TURMAN A WELL KNOWN WINSTON REALTOR THAT THE HOME HAD PROBLEMS IN SUMMER 2021. HE DENIED AND SAID \\\"THAT\\\'S INTERESTING.\\\" WILL HEDRICK IS A PATHOLOGICAL NARCSSTIC LIAR WHO LIES AND GROSSLY UNETHICAL!! HE LIED ABOUT EVERYTHING, AND HE IS TOTALLY INCOMPETENT AND STUPID. I HAVE FILED A COMPLAINT WITH THE STATE AND THEY HAVE AN INVESTIGATION. WILL AFTER HE CLOSED MY HOUSE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. ROYDA TURMAN, REALTOR AND I INFORMED CANDICE OF ALL THE MISDEEDS, LACK OF TRANSPARENCY, MADE UP SPEEK HOME INSPECTION WAIVER FORM, AND ALL HIS LIES, LIES AND UNETHICAL MISCONDUCT. WILL WAS IMMEDIATELY FIRED!!! MILANO INFORMED ME,\r\nHE STRONGLY TOLD ME NOT, NOT TO GET A HOME INSPECTION.ITS PERFECT THEY SAID!!\r\n AFTER I MOVED INTO THE HOUSE ITWAS HELL, WATER HEATER BROKEN, SEWER PUMP BROKEN. BROKEN HVAC HEATING FAN!!! LAST SUMMER WHEN WILL HAD THE PROPERTY, IT WAS BROKEN INTO. HE STATED THE LOCK BOX HAD BEEN SAWED INTO, 10K CHANDELIER, FRIDGE, AND COOKTOP TAKEN. HE MADE A POLICE REPORT. EVERYONE IN BENT TREE KNOWS IT WAS AN INSIDE JOB~~ HIS SQUARE FOOTAGE WAS INCORECT AND WHEN I GOT THE OFFICIAL APPRASIAL THE FOOTAGE  WAS WAY OFF!!!!! BE AWARE OF THE LYING HIGH LIABILTY HEDRICKS!!!!\r\nIF YOU NEED TO CALL ME FEEL FREE. TIA 8049821070\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-14 21:45:06'),(164,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:10:\"Tia Turner\";s:5:\"email\";s:23:\"tmturner70061@gmail.com\";s:5:\"phone\";s:10:\"8049821070\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:1544:\"PAULA,\r\nWILL HEDRICK A FORMER AGENT WITH YOUR AGENCY, AND COURTNEY HEDRICK ARE NOW IMPLICATED IN A STATE NC REAL ESTATE BOARD FOR NOT DISCLOSING MOLD/MILDEW/MOISTURE INTRUSION IN A HOME I BOUGHT FROM THEM IN JANUARY 2022. WILL WAS SEND TEXTS AND PICS BY REALTORS, IN PARTICULAR ROYDA TURMAN A WELL KNOWN WINSTON REALTOR THAT THE HOME HAD PROBLEMS IN SUMMER 2021. HE DENIED AND SAID \\\"THAT\\\'S INTERESTING.\\\" WILL HEDRICK IS A PATHOLOGICAL NARCSSTIC LIAR WHO LIES AND GROSSLY UNETHICAL!! HE LIED ABOUT EVERYTHING, AND HE IS TOTALLY INCOMPETENT AND STUPID. I HAVE FILED A COMPLAINT WITH THE STATE AND THEY HAVE AN INVESTIGATION. WILL AFTER HE CLOSED MY HOUSE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. ROYDA TURMAN, REALTOR AND I INFORMED CANDICE OF ALL THE MISDEEDS, LACK OF TRANSPARENCY, MADE UP SPEEK HOME INSPECTION WAIVER FORM, AND ALL HIS LIES, LIES AND UNETHICAL MISCONDUCT. WILL WAS IMMEDIATELY FIRED!!! MILANO INFORMED ME,\r\nHE STRONGLY TOLD ME NOT, NOT TO GET A HOME INSPECTION.ITS PERFECT THEY SAID!!\r\n AFTER I MOVED INTO THE HOUSE ITWAS HELL, WATER HEATER BROKEN, SEWER PUMP BROKEN. BROKEN HVAC HEATING FAN!!! LAST SUMMER WHEN WILL HAD THE PROPERTY, IT WAS BROKEN INTO. HE STATED THE LOCK BOX HAD BEEN SAWED INTO, 10K CHANDELIER, FRIDGE, AND COOKTOP TAKEN. HE MADE A POLICE REPORT. EVERYONE IN BENT TREE KNOWS IT WAS AN INSIDE JOB~~ HIS SQUARE FOOTAGE WAS INCORECT AND WHEN I GOT THE OFFICIAL APPRASIAL THE FOOTAGE  WAS WAY OFF!!!!! BE AWARE OF THE LYING HIGH LIABILTY HEDRICKS!!!!\r\nIF YOU NEED TO CALL ME FEEL FREE. TIA 8049821070\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-14 21:45:30'),(165,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Amanda Schenk\";s:5:\"email\";s:26:\"schenkfamily1983@yahoo.com\";s:5:\"phone\";s:10:\"3362664174\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:240:\"Hi Jeremy Aldridge, \r\nWe just bought the house at 795 Murray Dr, Salisbury, NC.\r\nThere were a couple of Contractors Invoices left from the day before closing.  Also your last Duke Energy bill arrived.  Where would you like us to send these.\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-18 08:20:17'),(166,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Karen Condon\";s:5:\"email\";s:15:\"kc2100@live.com\";s:5:\"phone\";s:10:\"3362029935\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:201:\"Hi I saw your listing in Rockwell,\r\n$257,250\r\n 24.5 acre lot\r\nBasinger Kluttz Rd, Rockwell, NC 28138\r\nWondered if you had detailed info...Why not selling?  Super steep?  Any other issues?\r\nThanks Karen\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-20 02:21:30'),(167,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Karen Condon\";s:5:\"email\";s:15:\"kc2100@live.com\";s:5:\"phone\";s:10:\"3362029935\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:201:\"Hi I saw your listing in Rockwell,\r\n$257,250\r\n 24.5 acre lot\r\nBasinger Kluttz Rd, Rockwell, NC 28138\r\nWondered if you had detailed info...Why not selling?  Super steep?  Any other issues?\r\nThanks Karen\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-20 02:27:19'),(168,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:15:\"Jordan Kennerly\";s:5:\"email\";s:23:\"jordank@steinfibers.com\";s:5:\"phone\";s:10:\"7042247478\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:191:\"Hi Deana, \r\n\r\nI wanted to reach out to you and inquire about your services, our your companies services, for a home for Kim and I. \r\n\r\nI look forward to hearing from you soon. \r\n\r\nThank you. \";s:8:\"agent_id\";s:2:\"37\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-20 08:25:40'),(169,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Jim Ryan\";s:5:\"email\";s:23:\"coachryan9393@gmail.com\";s:5:\"phone\";s:10:\"8157219150\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:256:\"Hi Katherine, I was hoping to schedule a time to see the property at 356 Autumn Ln. in Tryon.  We will be back in town and available all day Sunday...or anytime after 4 next week.  Please let me know if any of those times work.   Thank you for your time.  \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-22 05:01:48'),(170,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Sandra Matter\";s:5:\"email\";s:20:\"paintryder@yahoo.com\";s:5:\"phone\";s:12:\"970-214-6886\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:180:\"Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help on 356 Autumn Ln, Tryon, NC 28782 I would like to get more info. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-22 05:23:26'),(171,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:5:\"Sally\";s:5:\"email\";s:22:\"sab1.homes@outlook.com\";s:5:\"phone\";s:11:\"17044338462\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:112:\"Hi Sabine Amoakon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"781\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-27 21:24:12'),(172,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"Cliff Parker\";s:5:\"email\";s:19:\"cnmparker@yahoo.com\";s:5:\"phone\";s:12:\"425-315-6505\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:572:\"Hi Kim,\r\nI noticed that you recently had a townhome on the market in Harrisburg Towncenter.\r\nWe have a condo there that we are interested in selling.\r\nOur address is 6410 Kee Lane, Harrisburg, NC 28075\r\n\r\nHere is a little about our situation.\r\nThe condo is our \\\"second home\\\", we actually live in Charleston, SC.\r\nWe were using the condo to visit our son and grandkids, but they recently moved.\r\n\r\nIf working with us to sell our condo is something you would be able to do, please give me a call and we can discuss things further.\r\n\r\nThanks!\r\n\r\nCliff Parker\r\n(425)315-6505\";s:8:\"agent_id\";s:3:\"383\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-04-30 05:53:36'),(173,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:13:\"Byron Sherman\";s:5:\"email\";s:21:\"johnch9vs39@gmail.com\";s:5:\"phone\";s:12:\"704-213-2286\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:234:\"Hi Jody Clodfelter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nI’m interested in the property @ Austin Rd. & Joe Rd. near Red Cross.  Sq. Footage, acreage, price, etc.  Thank you!\";s:8:\"agent_id\";s:3:\"598\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-14 23:23:43'),(174,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Robin Matthews\";s:5:\"email\";s:21:\"rmatthews30@gmail.com\";s:5:\"phone\";s:10:\"7047016434\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:233:\"Hi Brittney, we just drove by a vacate lot adjacent to Partridge Bluff or in that area. We don’t see it listed on the website. Can you provide some information about this lot? The street was “Wind Ridge” or similar. Thank you! \";s:8:\"agent_id\";s:4:\"2274\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-21 07:06:24'),(175,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:8:\"Jameshia\";s:5:\"email\";s:19:\"jbaldwin@eckerd.org\";s:5:\"phone\";s:7:\"Baldwin\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:143:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. I’m looking for a home to rent\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-22 10:33:39'),(176,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Noni Waite-Kucera\";s:5:\"email\";s:12:\"noni@enf.org\";s:5:\"phone\";s:12:\"336-761-1040\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:801:\"Hello Casey,\r\nI am the Executive Director of Eagle\\\'s Nest Foundation and our campus is adjacent to the house you are listing at 332 Hart Rd., Pisgah Forest.  I sent a message through Zillow but wasn\\\'t sure if that would make it to you.   After conferring with our Board of Trustees we would like to request that you adjust the property description to not include the mention of Eagle\\\'s Nest Camp or our conservation easement. Our campus is home to a summer camp and school and there is no public access.  We don\\\'t want potential buyers to think there may be walking access on our campus that is busy with young people night and day.  I hope you will make this consideration and certainly I am happy to discuss with you over the phone.  I can be reached at 336-761-1040 ext. 102.  Many thanks, Noni\";s:8:\"agent_id\";s:4:\"2079\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-26 03:31:29'),(177,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:7:\"Esteban\";s:5:\"email\";s:23:\"alfa.thinking@gmail.com\";s:5:\"phone\";s:6:\"Alfaro\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:163:\"Hello Paula, saw your listing for a lot on high rock lake address is 1026 Emerald Bay Dr. Salisbury NC. Would like o know if the HOA will allow short term rentals.\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-29 00:25:44'),(178,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:11:\"Sandy Helms\";s:5:\"email\";s:22:\"sandyhelms68@yahoo.com\";s:5:\"phone\";s:11:\"704-4410384\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:167:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nCan you tell me how this property is zoned.\r\nThank you \";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-05-31 20:35:16'),(179,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:14:\"Austin Freeman\";s:5:\"email\";s:20:\"Austinf526@gmail.com\";s:5:\"phone\";s:10:\"7047836735\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:485:\"Hello my name is Austin Freeman, I was recommended to you from my uncle Scott Barbee. I have two lots in Kannapolis, NC that I hoping to put on the market in July as was hoping to get a market appraisal and potentially list it. The properties are 2489 Forrestbrook Dr, Kannapolis, NC, 28083 (0.97 acres) and 2508 Forrestbrook Dr, Kannapolis, NC, 28083 (18 Acres). If you would give me a call at 704-783-6735 or email me back at Austinf526@gmail.com so we can discuss further. Thank you\";s:8:\"agent_id\";s:3:\"105\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-03 07:17:41'),(180,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:16:\"Jude DeVirgiliis\";s:5:\"email\";s:23:\"judecarter828@gmail.com\";s:5:\"phone\";s:12:\"828.964.5174\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:242:\"Hi Katherine Lawing, I\\\'m Sandy Devirgiliis\\\' child and we were looking at some land that came up for sale and was hoping you could help us figure out if it\\\'s a good purchase for building our home on. It\\\'s 8 silver long road, Asheville NC. \";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-04 04:33:02'),(181,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:6:\"Walter\";s:5:\"email\";s:19:\"bundyfive@gmail.com\";s:5:\"phone\";s:0:\"\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Amy Bundy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2283\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-07 04:04:13'),(182,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Jeremy Aldridge, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"370\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:44:56'),(183,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Katie Abell, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1904\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:45:30'),(184,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Sabine Amoakon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"781\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:46:10'),(185,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Casey Barber, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"416\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:46:36'),(186,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Cheryl Baxter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"785\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:47:00'),(187,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Amy Bundy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2283\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:47:33'),(188,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Toni Benton, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"546\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:48:09'),(189,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Annie Boger Kamp, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"111\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:48:34'),(190,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Elizabeth Brown, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"126\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:48:56'),(191,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Dale Bullock, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"788\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:49:44'),(192,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Crystal Cauble, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"380\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:50:36'),(193,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Jenna Cook, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:50:58'),(194,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Tan Crawford, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2169\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:51:27'),(195,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Evonne Caudill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"549\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:51:45'),(196,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Jessica Eudy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2709\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:52:13'),(197,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Michael Davis, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"801\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:52:44'),(198,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Kim Drakulich, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"383\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:53:04'),(199,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"808\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 12:56:42'),(200,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Amy Evans, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"135\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:00:26'),(201,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:118:\"Hi Taylor David McClure, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1510\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:00:46'),(202,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:119:\"Hi Cecilia Maria Ferrari, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2082\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:01:05'),(203,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Erin Hyman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2171\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:01:28'),(204,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Yira Garcia, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:01:47'),(205,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Sarah Grace Horn, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2308\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:02:09'),(206,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:122:\"Hi Evelin lisseth Hernandez, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2165\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:02:33'),(207,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Lynnette Gearing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"393\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:02:57'),(208,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Cathy Hager, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"553\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:03:15'),(209,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Conard Haywood, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"814\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:03:40'),(210,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Lezli Rae Leath, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2167\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:04:02'),(211,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Tammy Fox, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1655\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:05:04'),(212,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Liz Hallman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1398\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:05:46'),(213,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Stephanie E Morgan, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2163\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:06:05'),(214,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Hosanna Hill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"555\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:06:28'),(215,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Melissa Jackling, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"390\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:06:54'),(216,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Christine Jalynski, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"476\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:07:32'),(217,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Kelly Keller, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"503\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:08:00'),(218,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:120:\"Hi Rochelle Shanae Ogburn, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1907\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:08:26'),(219,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Misty Lynn Moss, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2086\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:08:46'),(220,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Melinda R Mesimerr, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2711\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:09:03'),(221,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Melissa LaCroix, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"424\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:09:28'),(222,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Dawn Lamb, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"825\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:09:48'),(223,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1402\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:13:24'),(224,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Helen Robb, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"481\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:13:46'),(225,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Lindsey McCauley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"400\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:14:07'),(226,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Connie Merrell, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"828\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:14:27'),(227,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1633\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:14:44'),(228,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Megan Owens, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2713\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:15:03'),(229,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Julie Nutter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"484\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:15:21'),(230,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Jason Overcash, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"322\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:15:54'),(231,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Laura Overcash, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"430\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:16:25'),(232,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Alicia Love Hammel, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1557\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:16:46'),(233,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:115:\"Hi Charity K Meachum, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2280\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:17:04'),(234,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Kelly Robinson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"836\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:17:24'),(235,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:121:\"Hi Viviana Martinez Campos, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1677\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:17:44'),(236,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Kim Sadler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:18:04'),(237,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Chelsi Sherin, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"845\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:19:07'),(238,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Holden Sides, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"848\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:19:33'),(239,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:115:\"Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"620\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:19:55'),(240,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi John Suther, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"439\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:20:48'),(241,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Dawn Wetherbee, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1892\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:21:06'),(242,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Brittney Steele, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2274\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:21:24'),(243,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Kimberly Trask, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"560\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:21:41'),(244,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Brianne Watson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"563\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:22:10'),(245,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Rick Wilson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"853\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:22:33'),(246,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Wendell Rummage, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1685\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:22:56'),(247,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Todd Wooley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"444\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:23:14'),(248,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:121:\"Hi Sherri Wiles Argabright, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1408\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:23:44'),(249,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Taina Shaw, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1682\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:24:07'),(250,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:120:\"Hi Andrew Jason Wetherbee, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2722\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:24:50'),(251,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Michele Tichnor, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1545\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:25:11'),(252,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Amber Tsumas, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2027\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:25:37'),(253,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Colleen Viteri, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2716\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:26:13'),(254,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Robbie Bendig, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"468\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:30:26'),(255,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Sandra Bean, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1901\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:30:40'),(256,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Jessica Cloward, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"470\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:31:00'),(257,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:117:\"Hi Carmady King Kruger, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2173\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:31:53'),(258,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Deborah Griffin, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"573\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:32:12'),(259,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:130:\"Hi Melissa Shannon Morefield-Valley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2292\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:32:34'),(260,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:115:\"Hi Marguerite Keller, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"576\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:33:06'),(261,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Cheyenne Kidd, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"822\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:33:35'),(262,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Bret Leonard, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"497\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:34:14'),(263,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:118:\"Hi Mitzi Mcdaniel Smith, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2720\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:34:42'),(264,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Rodney Queen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"834\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:35:04'),(265,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:117:\"Hi Alexis Devine Smith, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2718\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:35:28'),(266,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:120:\"Hi Benjamin Allen Surratt, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2302\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:36:16'),(267,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Paige Wiser, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1507\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:39:10'),(268,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Maranda Allen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1514\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:39:32'),(269,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi Karie Arem, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2023\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:39:46'),(270,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Emily Chandler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"791\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:40:22'),(271,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Janice Cannon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1523\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:40:31'),(272,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:0:\"\";s:7:\"message\";s:110:\"Hi Tracie Clark, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"798\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:40:50'),(273,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi David G Cannon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2021\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:41:04'),(274,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Dawn Fisher, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2035\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:41:19'),(275,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Donna Hiner, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"816\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:41:31'),(276,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Aaron Forsyth, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2277\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:41:58'),(277,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Deanna Miltz, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"558\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:42:14'),(278,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Rick Rhew, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"434\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:42:45'),(279,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Hayley Rogers, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"839\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:44:07'),(280,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Jamie Stewart, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2289\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:44:25'),(281,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Susan Starnes, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"617\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:44:38'),(282,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:107:\"Hi Min Zhang, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"623\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:44:56'),(283,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Sheila Allison, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"411\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:45:09'),(284,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Brenda Bingham, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1520\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:45:24'),(285,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Jody Clodfelter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"598\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:45:35'),(286,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"601\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:45:47'),(287,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Mike Fullerton, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"604\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:46:04'),(288,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Chelsea Trexler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1898\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:46:19'),(289,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:108:\"Hi April Bird, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"565\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:46:49'),(290,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1551\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:46:58'),(291,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Rachel Monrad, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"831\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:49:10'),(292,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Sarah Romesburg, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"842\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:49:27'),(293,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Dominique Walter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1548\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:49:42'),(294,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Ashley Uttecht, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1637\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:49:55'),(295,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Kathy Gurney, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2031\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:52:55'),(296,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:110:\"Hi Julie Arader, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1895\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:53:57'),(297,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi Colleen Crane, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2305\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:54:33'),(298,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:111:\"Hi IIona Kenrick, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2077\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:54:54'),(299,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Micheal Farlow, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1640\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:55:15'),(300,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Casey Paige Maness, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2079\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:55:37'),(301,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"1642\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:56:30'),(302,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:116:\"Hi Doreen Shaughnessy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2029\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:56:47'),(303,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:109:\"Hi Jenna Stoll, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2084\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:57:16'),(304,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:112:\"Hi Claire Sonnier, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2033\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:58:36'),(305,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:114:\"Hi Stephanie Knight, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:4:\"2298\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:58:49'),(306,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:12:\"becca autumn\";s:5:\"email\";s:22:\"beccaautumn1@gmail.com\";s:5:\"phone\";s:10:\"3026342356\";s:9:\"user_type\";s:11:\"I\'m a buyer\";s:7:\"message\";s:113:\"Hi Ashley Ferlauto, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\";s:8:\"agent_id\";s:3:\"645\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-06-26 13:59:00'),(307,1,'a:9:{s:4:\"type\";s:10:\"lead_agent\";s:4:\"name\";s:17:\"Kaitlyn Goldsmith\";s:5:\"email\";s:20:\"ksammons42@gmail.com\";s:5:\"phone\";s:10:\"7047875877\";s:9:\"user_type\";s:5:\"Other\";s:7:\"message\";s:256:\"Hi Kim. We recently purchased a property put up by Lantern, 145 winding way in Salisbury. However, your lock box is still on the door. We plan on changing the locks soon, and I was wondering when you would be able to come and get the box?\r\n\r\nThanks,\r\nKatie\";s:8:\"agent_id\";s:3:\"744\";s:10:\"agent_type\";s:10:\"agent_info\";s:10:\"listing_id\";s:0:\"\";}','2022-07-01 08:19:10');
/*!40000 ALTER TABLE `lrwp_houzez_crm_activities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_houzez_crm_deals`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_deals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_deals` (
  `deal_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `title` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `listing_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `lead_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `agent_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `agent_type` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `next_action` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action_due_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `deal_value` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_contact_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `private_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `deal_group` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`deal_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_deals`
--

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

--
-- Table structure for table `lrwp_houzez_crm_enquiries`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_enquiries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_enquiries` (
  `enquiry_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `lead_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `listing_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `negotiator` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enquiry_to` bigint(25) DEFAULT NULL,
  `enquiry_user_type` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enquiry_type` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enquiry_meta` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `private_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`enquiry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_enquiries`
--

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

--
-- Table structure for table `lrwp_houzez_crm_leads`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_leads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_leads` (
  `lead_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `prefix` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `display_name` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `first_name` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `last_name` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `mobile` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `home_phone` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `work_phone` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `city` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `state` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `zipcode` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `source_link` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `enquiry_to` bigint(200) DEFAULT NULL,
  `enquiry_user_type` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `linkedin_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `facebook_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `private_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`lead_id`)
) ENGINE=MyISAM AUTO_INCREMENT=304 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_leads`
--

LOCK TABLES `lrwp_houzez_crm_leads` WRITE;
/*!40000 ALTER TABLE `lrwp_houzez_crm_leads` DISABLE KEYS */;
INSERT INTO `lrwp_houzez_crm_leads` VALUES (1,1,'','Eric Hebert','','','eric@emjaproperties.com','7042247413','','','','','','','','buyer','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Interested in the 9 house portfolio and the numbers in it.','2020-06-07 22:20:47'),(2,1,'','Wayne','','','wbc58@att.net','407-412-4552','','','','','','','','buyer','','','https://lantern-realty.com/agent/robbie-bendig/',468,'agent_info','','','','','Would like to see your listing in China Grove','2020-06-16 12:12:31'),(3,1,'','Floyd W Scott','','','Honeydo777@gmail.com','7049330006','','','','','','','','buyer','','','https://lantern-realty.com/agent/cindy-widenhouse/',373,'agent_info','','','','','Hey Cindy, hope you\\\'re doing well? Will you please stop sending me houses that are way over my price I\\\'m only looking at maybe a 50 or $60,000 high price range and unless the properties will sell for over $200,000 after fix up that I\\\'m not interested in anything that\\\'s over 60,000. You keep sending me things that are way over 60,000 that\\\'s why I\\\'m not buying anything right now that you\\\'re sending','2020-06-16 14:39:44'),(4,1,'','Cynthia Hahn','','','chahn27@hotmail.com','7043631544','','','','','','','','buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Amanda, \r\nMy name is Cynthia Hahn.  I am a broker.  My sister is moving here from MD and has 3 horses.  I am looking for her a place. I saw the land for sale on Austin Rd. I am not a member of the MLS. I use my license for my personal purchases and for family. I noted it is a government sale.  Can you please email me the details on the property. \r\nThank you\r\nCynthia Hahn','2020-06-19 11:57:49'),(5,1,'','Rochelle Lilly','','','rochellelilly@yahoo.com','7736302318','','','','','','','','buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi , I saw profile on Lantern Realty and Development and wanted to see if i can get some help with the property at the address of 1232. I don\\\'t remember the street or highway close to mint hill.','2020-07-14 21:58:15'),(6,1,'','Tracy Burkett','','','tracyb928@hotmail.com','8287772696','','','','','','','','buyer','','','https://lantern-realty.com/agent/kim-drakulich/',383,'agent_info','','','','','Hey we\\\'re looking for land!  We know exactly what we want (mostly) so its just a matter of it becoming available.  We want 8+ acres (we dont care if theres a house there, and would probably prefer there not to be a house) in the cabarrus county area---Midland, harrisburg area--the other side of 601 (towards Locust) is too far.  RIght into Mecklenburg county off 24/27 would be ok too.  I\\\'ve been setting my max price for $500k when I search online, but probably we\\\'re hoping for 200K or less, more realistically.','2020-07-22 15:21:14'),(7,1,'','Meggie Lasher','','','meggie.lasher@gmail.com','8285820753','','','','','','','','buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy,\r\n\r\nI’m interested in the property at 1802 W C Street. I’d be a first time home buyer. I’m looking into the USDA loan. Working on pre-qualification! \r\n\r\nI look forward to hearing from you soon.','2020-08-08 14:14:02'),(8,1,'','Tamara Borges','','','tborges1515@gmail.com','3215066529','','','','','','','','buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Good morning, I’m interested in the property you have listed at 7067 NC 218\r\nPeachland, NC 28133.  I currently live in Florida and I’m coming in to Charlotte today to visit my daughter till this Sunday 8/23, will you be available to show me?  I look forward to hearing from you, thanks.\r\n\r\nTamara','2020-08-20 09:15:43'),(9,1,'','Cheryl Baxter','','','cmbaxter2@gmail.com','7047968843','','','','','','','','buyer','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hey Paula! Can you give me a call?','2020-08-26 17:55:52'),(10,1,'','Julia Corbin','','','juliacorbin88@gmail.com','5132609464','','','','','','','','buyer','','','https://lantern-realty.com/agent/brenda-brown/',528,'agent_info','','','','','Hi, Brenda !  I don\\\'t have your home email  - so I\\\'m sending this to you - I looked up your business page online!  Mom\\\'s 80th bday is coming up - here\\\'s the email I\\\'m sending out to family.  Will you let Deanna know, too?  And Aunt Ann?  Thanks!  I hope you all are well - have a great week !  \r\n\r\nJudy Inman Richter\\\'s birthday is September 14.  Don\\\'t tell her we told you, but she will be 80!  She is the youngest 80-year-old we\\\'ve ever met !  Her address:\r\nMrs. Judy Richter1314 Glen Meadow Dr.Findlay, OH  45840\r\n\r\nMost of you know, our dad was diagnosed with bone cancer in the spring.  He is responding well to several medications.  He has some really good days, but has his share of tough days with considerable pain.  One of the hardest things about the last few months is that John and Judy have felt pretty isolated.  They have had some back porch and front porch picnics with immediate family, which has helped a lot.  Dad got out and played 9 holes of golf with John, Jim, and Mike. He was very happy about that.  We know they would appreciate cards and calls.  \r\nThank you in advance for helping to celebrate Aunt Judy / Honeybunch ! \r\nLove,\r\nJulie, John, Jill, and Jessie ','2020-08-30 13:20:19'),(11,1,'','Mitch Green','','','bear__007@hotmail.com','','','','','','','','','','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Hi Chris Puckett, I saw your listing 45 Mandalay Pl SW, Concord, NC 28027\r\n\r\n9x rental properties listed for 725k.  Are all 9 homes about the same size 900 sqft from the 1940s? What is the rental income?  Tenants are all long term tenants or on 1 year leases?','2020-09-26 01:49:07'),(12,1,'','Regan Hall','','','reganlhall@aol.com','(980) 332-0780','','','','','','','','','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim, my mom wrote to you and asked if she signed anything with you locking her into the inability to acquire another agent?, she is looking up in the area of lenoir and spoke with an agent to see what is available and was told to find out about anything signed between you and her just like with Jessica..I\\\'m assuming you didnt have her sign any commitment the same as Jesssica but she needs to know so we can move forward with the search. Please let her or myself know asap! Thanks Kim','2020-09-26 15:58:24'),(13,1,'','Easton Nesbitt','','','eaneaston5@gmail.com','9802342178','','','','','','','','','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hi Paula, it’s Easton Nesbitt from the barbershop on West Avenue. I was wondering if you do any type of business with rentals such as apartments or rental homes? I’m looking for one in Kannapolis and maybe the surrounding area. If you could get back with me that would be awesome! Thank you!','2020-10-06 12:08:42'),(14,1,'','Renae Fountain, Realtor/Broker @ High Country Realty of NC','','','Renae@highcountryrealtync.com','910-612-4441','','','','','','','','','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','I have a client that would like to see 520 Alleghany Spur Road, \r\nTraphill, NC.  Can you please send me the MLS Agent Full Sheet with all information. Also, how can I gain access to homes to show them.  If possible I would  like to show Tuesday afternoon or Wednesday afternoon.','2020-10-12 23:26:01'),(15,1,'','amanda cody','','','amandaearnhardt@yahoo.com','9805811399','','','','','','','','','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2020-10-13 16:26:49'),(16,1,'','Eddie Morrison','','','eamorrison74@gmail.com','7049179265','','','','','','','','','','','https://lantern-realty.com/agent/ethan-stillinger/',141,'agent_info','','','','','Hi Ethan Stillinger, I saw your sign in the Cambridge community in Iron Station I believe.  It was on the left hand side as you enter in the community.  Must be the first lot.  Is this lot still available, what is the asking price and may I see the CCR\\\'s?  Thank you','2020-10-17 22:10:07'),(17,1,'','Oren','','','orenm@kw.com','917-291-1178','','','','','','','','','','','https://lantern-realty.com/agent/hosanna-hill/',555,'agent_info','','','','','Hi Hosanna \r\n\r\nWondering if you had any interested Buyers for a project in China Grove?\r\n\r\nhttps://matrix.carolinamls.com/matrix/shared/mgdgHv1kpGc/804RailroadAvenue','2020-11-05 15:44:07'),(18,1,'','Josh Edwards','','','josh.edwards@sscoop.com','7045760547','','','','','','','','','','','https://lantern-realty.com/agent/mike-fullerton/',604,'agent_info','','','','','Hi Mike, I wanted to see if i can get some help with 158 Edwards Store Rd, in Peachland? I’m a very interested buyer and by the pics of the property & riding by it I will likely pay asking price if it holds true to the pics of the inside. If the seller hasn’t signed a contract with another buyer maybe I can get my name in on it. Thanks!!','2020-11-22 00:09:39'),(19,1,'','Amy Workman','','','interfaceamy@gmail.com','7046401063','','','','','','','','','','','https://lantern-realty.com/agent/cheyenne-kidd/',822,'agent_info','','','','','Hi Cheyenne,\r\n\r\nI found a property that I am interested in on Zillow and believe you are the listing agent!  It is a parcel of land on high rock lake on Waters Road:  https://www.zillow.com/homedetails/0-Waters-Rd-16-Salisbury-NC-28146/2077973431_zpid/.  Is this property still available?  If so, could you give me some more details....  what are the HOA dues and what is included with the dues..pool?  Common area?  Also, is there a forested setback requirement for this land from the water?    What are the restrictions with the HOA?  Thank you so much!\r\n\r\nAmy Workman','2021-01-11 17:50:41'),(20,1,'','Grace','','','graceevans1322@gmail.com','','','','','','','','','','','','https://lantern-realty.com/agent/kimberly-howell/',473,'agent_info','','','','','Hi Kimberly! I saw your sign out at a house on Camp Julia Rd that I would be interested in looking at to purchase and was wondering the price on it.','2021-01-17 20:55:04'),(21,1,'','Jennifer Burroughs','','','74jennyk@gmail.com','7042322290','','','','','','','','','','','https://lantern-realty.com/agent/courtney-sloan-holshouser/',1449,'agent_info','','','','','Hi Courtney Sloan Holshouser, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nGive me a call or text me...wanted to see if you still wanted to meet up tonight to talk about what Mike and I are looking for in a house.\r\nThanks!!','2021-02-10 18:32:07'),(22,1,'','Emily Furr','','','Emily.Dana.h4@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Ms. Cody! I am possibly looking for a 2-3 bedroom rental or home to purchase for my children and myself. I\\\'d like to pursue renting first, but I realize there are very limited options in Stanly County. There are a lot of things up in the air for my family currently, but Stacy Hicks recommended that I reach out to you so I could be on your radar. Thank you! - Emily Furr','2021-02-24 16:06:56'),(23,1,'','Sherry Jones','','','sjones201964@gmail.com','7046779424','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim Sadler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-02-24 22:59:50'),(24,1,'','Samantha Hower','','','sam@thehillgrouptriad.com','3365963007','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna,\r\nI am Samantha with Joshua Mitchell Real Estate. I have a client interested in 105 Hasty Hill Rd. It is not in our MLS, they would like to see the home soon. Look forward to speaking with you soon.','2021-03-04 01:10:49'),(25,1,'','Andrew R Burgesser','','','bluedogexcel@yahoo.com','7045508801','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brenda-sue-bingham/',1520,'agent_info','','','','','Hi Brenda Bingham, I wanted to get some information regarding the 10 acre parcel for sale on Cold Springs Road. I know it was pending sale, then listed again, can you advise if there was an issue with the land? Thank you.','2021-03-24 17:11:04'),(26,1,'','Ben Moss','','','ben.rubberduck@gmail.com','980-284-3393','','','','','','','','','','','https://lantern-realty.com/agent/sherri-wiles-argabright/',1408,'agent_info','','','','','Hi Sherri,\r\n\r\nMy name is Ben Moss, owner of Rubber Duck Trucking, provider of land clearing, grading and demo services.  \r\n\r\nI’ve learned that you’re representing the buyer for the 16.6 acres on hwy 152.   I would love the opportunity of connecting with you and/or your buyer with regards to our services. Would you be willing to share my contact information below with them?\r\n\r\n(980) 284-3393\r\nBen.RubberDuck@gmail.com\r\n\r\nI greatly appreciate your time and any consideration you allow me. \r\n\r\nCongrats on being  under contract!\r\n\r\nKind Regards,\r\n\r\nBen','2021-03-26 15:07:37'),(27,1,'','Jessica and David English','','','jhenglish88@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna Hiner, I heard from a friend about a property you are listing by the end of the week on Old Mill Rd. I believe the address is 20255. Can you tell me the asking price?','2021-03-29 22:25:30'),(28,1,'','Test','','','hello@gmail.com','704-555-9876','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivan-henrickson/',1551,'agent_info','','','','','Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-03-30 20:14:47'),(29,1,'','Jorge Torres','','','junkexremoval@aol.com','9804441918','','','','','','','','Other','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Whether you buy investment properties, or manage existing properties, Junk-Ex Removal can help you today! We work with real estate investors who need to clean up a property before flipping it and also property management companies to keep their properties junk and debris free.  Junk-Ex Removal would love to partner with you to ensure your properties are making a great impression! \r\n\r\nWe specialize in working with Real Estate Professionals, Bank/Foreclosure Actions, Estate Clean-Outs, Investors and House-Flippers!\r\n\r\nServing Charlotte and the surrounding area. Experienced, reliable, ethical and reasonably priced. Family owned business. Licensed and insured in NC.\r\n\r\nFREE ESTIMATES!\r\n\r\nCheck us out at www.JunkExRemoval.com or contact me today for more information at 980-444-1918. Thank you for your consideration.\r\n\r\nJorge Torres\r\n980-444-1918\r\nJunkexremoval@aol.com\r\nwww.JunkExRemoval.com','2021-04-19 16:32:15'),(30,1,'','Jorge Torres','','','junkexremoval@aol.com','9804441918','','','','','','','','Other','','','https://lantern-realty.com/agent/casey-barber/',416,'agent_info','','','','','contact@lantern-realty.com','2021-04-19 16:33:50'),(31,1,'','Jorge Torres','','','junkexremoval@aol.com','9804441918','','','','','','','','Other','','','https://lantern-realty.com/agent/casey-barber/',416,'agent_info','','','','','Whether you buy investment properties, or manage existing properties, Junk-Ex Removal can help you today! We work with real estate investors who need to clean up a property before flipping it and also property management companies to keep their properties junk and debris free.  Junk-Ex Removal would love to partner with you to ensure your properties are making a great impression! \r\n\r\nWe specialize in working with Real Estate Professionals, Bank/Foreclosure Actions, Estate Clean-Outs, Investors and House-Flippers!\r\n\r\nServing Charlotte and the surrounding area. Experienced, reliable, ethical and reasonably priced. Family owned business. Licensed and insured in NC.\r\n\r\nFREE ESTIMATES!\r\n\r\nCheck us out at www.JunkExRemoval.com or contact me today for more information at 980-444-1918. Thank you for your consideration.\r\n\r\nJorge Torres\r\n980-444-1918\r\nJunkexremoval@aol.com\r\nwww.JunkExRemoval.com','2021-04-19 16:34:15'),(32,1,'','Joel Disselkoen','','','jstynnc@gmail.com','7047738016','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tricia-strickland/',620,'agent_info','','','','','Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-05-05 23:20:34'),(33,1,'','Ann Dixon','','','bizcorp10140@yahoo.com','7046659292','','','','','','','','','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, I have seen that you were the listing agent on the property at 276 Elm Avenue Concord Avenue 28025 I want to know if this property was still available ? Can you give me a call or text me at your earliest convenience thank you.','2021-05-06 00:40:45'),(34,1,'','Jessica Owenby','','','jrowenby@live.com','','','','','','','','','','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine, I saw a for sale sign on Zion Hill Road in Marion for a piece of land that I would like info on. I’m not sure of the address. It is near Wilson Farm Rd.','2021-05-09 20:38:41'),(35,1,'','Jessica Owenby','','','jrowenby@live.com','','','','','','','','','','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine, I saw a for sale sign on Zion Hill Road in Marion for a piece of land that I would like info on. I’m not sure of the address. It is near Wilson Farm Rd.','2021-05-09 20:39:02'),(36,1,'','Mark MacLaughlin','','','Mark.maclaughlin@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cheyenne-kidd/',822,'agent_info','','','','','Hello Cheyenne! I’ve been keeping an eye on your listing at 530 Waters Rd #16, Salisbury, NC. I was wondering if you might be able to provide any additional information that might not be in the listing. Restrictions, docking permitting, HOA immediate requirements? We’re located in SWFL, but have been eyeing some potential properties in your area. Specifically, we’re looking at lakefront’s in the region which we would like purchase and then wait a few years to build a main structure. Email is best. Thanks for your assistance!','2021-05-12 00:13:09'),(37,1,'','Ron Hainsey','','','ronbo4355@gmail.com','9107701962','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim,\r\nMy wife and I are considering selling, we live three doors\r\ndown where you used to live (#614 Maple Ridge Cir).  Can you send me your terms, rates, so forth ? I look forward to hearing from you.\r\n\r\nRon & Denise','2021-05-13 16:00:45'),(38,1,'','Missy Bowers','','','Missy@beyourbestinc.com','770 335 7680','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, \r\n\r\nI saw your listing for 94 Foxberry Lane #77 in Murphy, NC and I had a couple of questions.  Can I rent this when we are not using it as our second home?  What type of view does it have?','2021-05-18 15:52:06'),(39,1,'','Randy E Aldridge','','','randyaldridge@strmechanical.com','7046156833','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, I checked on the home for sale at 66 Valley View, Banner Elk. Apparently the builder has this listed with an agent. Could you review, give me your opinion and give me a call to discuss a possible offer...??','2021-05-24 21:16:15'),(40,1,'','Darrell Jones jr','','','Different.Frequency.llc@gmail.com','5164012288','','','','','','','','Other','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna Hiner, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-05-25 14:30:26'),(41,1,'','Darrell Jones jr','','','Different.Frequency.llc@gmail.com','5164012288','','','','','','','','Other','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna Hiner, I was interested in presenting your property 12808 N Tryon Hwy, Charlotte, NC 28262 to my buyers.','2021-05-25 14:31:43'),(42,1,'','Christina','','','cfaust941@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hello Julie,\r\n\r\nI am interested in a property you have listed at 0 Deep Gap Rd, Whittier, NC 28789. Could you please send me the build restrictions and CCRs for the subdivision. \r\n\r\nThank you,\r\n\r\nChristina','2021-06-23 01:18:41'),(43,1,'','Terry Blue','','','tblue982@gmail.com','7044258374','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n49709 Quail Trail Rd, Norwood, NC 28128 I would like to review.','2021-06-24 12:10:19'),(44,1,'','Terry Blue','','','tblue982@gmail.com','7044258374','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help\r\n\r\n49709 Quail Trail Rd, Norwood, NC 28128 I would like to review.','2021-06-24 12:11:26'),(45,1,'','stephen ellis','','','stephen@ellisdevelopments.com.au','8054053263','','','','','','','','','','','https://lantern-realty.com/agent/cathy-hager/',553,'agent_info','','','','','Call me Re concord land for sale prices at $2.7mil','2021-06-24 15:26:30'),(46,1,'','Christa Hartsell','','','cphartsell@gmail.com','9106121767','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi, would like to make an offer on a home on Quail Trail Rd , Norwood.','2021-06-26 02:07:47'),(47,1,'','christina Howard','','','christina.idol@yahoo.com','3368703527','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted more information on the 1.25 acres listed on cold springs road.','2021-07-06 13:19:55'),(48,1,'','Daniel Lewis','','','lewislawncareahi@gmail.com','9804323026','','','','','','','','','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Good morning,\r\n\r\nI am writing to inquire about your lawn care and property repair contracts for both commercial and residential listings.  \r\n\r\nWe are a locally owned company and are interested in submitting a bid for any current or upcoming properties you may have available. We cover all forms of lawn care needs as well as all home repairs. A POI can be submitted upon request.\r\n\r\nPlease let me know if you have any further questions or are in need of services. We can be reached at 980-432-3026.\r\n\r\nThank you,\r\n\r\nBethany Lewis\r\nDaniel Lewis\r\nLewisLawnCareAHI','2021-07-06 16:59:39'),(49,1,'','James Walthall','','','arlcuts@gmail.com','7049043527','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I was riding down cold springs rd today and saw a couple of 10 acre tracts for sale. I would like any info you have','2021-07-06 19:54:17'),(50,1,'','Fred J. Allen Jr.','','','Fredjallen@msn.com','7047917288','','','','','','','','Other','','','https://lantern-realty.com/agent/sandi-laney/',427,'agent_info','','','','','Hi Sandi Laney, Remember Fred & Jayne  Allen,  the land on Beaver Rd in China Grove? You probably never saw finished home. We would like you to look and see what you think it\\\'s worth. \r\nWould value your opinion. \r\nLet me know what you would charge to look it over.\r\nBest Regards;\r\nFred & Jayne','2021-07-09 01:41:09'),(51,1,'','Mary Boyles','','','marylboyes@yahoo.com','704-363-3655','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Tony Overcash gave me your name. We are planning on moving back to Concord/Kannapolis area and are needing a good agent to get us there. We are currently living in Mt. Airy, NC but are ready to get back to the area we lived for many years until we moved to take care of our parents until their passing. You can reach me on my cell at 704-363-3655. Thank you and I look forward to hearing from you.','2021-07-13 14:29:33'),(52,1,'','Mary Boyles','','','marylboyes@yahoo.com','704-363-3655','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Tony Overcash gave me your name. We are planning on moving back to Concord/Kannapolis area and are needing a good agent to get us there. We are currently living in Mt. Airy, NC but are ready to get back to the area we lived for many years until we moved to take care of our parents until their passing. You can reach me on my cell at 704-363-3655. Thank you and I look forward to hearing from you.','2021-07-13 14:29:49'),(53,1,'','Russell Walthall','','','arlcuts@gmail.com','7049043527','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brenda-sue-bingham/',1520,'agent_info','','','','','Looking at lots off cold spring rd in midland locust area or off of 49','2021-07-27 16:11:55'),(54,1,'','Robert & Lori Edwards','','','thankinghimdaily17@gmail.com','3364736046','','','','','','','','','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hello Mr. Aldridge,\r\n\r\nMy husband, Robbie, and I are the neighbors to the Redwood Drive house in Mocksville that you\\\'re selling. Yes, the ones with the playset in the front yard, lol. We see what an amazing job you did with the Watson\\\'s home and we were wondering if, when we\\\'re ready, you\\\'d be interested in flipping our house too?\r\nAlso, our 2 older boys would like to keep the yard next door mowed for you until the house sells.\r\n\r\nThank you,\r\nLori Edwards','2021-08-03 00:32:05'),(55,1,'','Granita Ashley Deas','','','foxxyheart@yahoo.com','7043108985','','','','','','','','I\'m a tennant','','','https://lantern-realty.com/agent/rodney-queen/',834,'agent_info','','','','','Hi Rodney Queen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-08-05 09:47:26'),(56,1,'','eric perry','','','supplementailemail1@gmail.com','','','','','','','','','Other','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy Fox, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. I\\\'m wondering how much our home is worth at 1402 Brantley rd in Kannapolis? Thank you.','2021-08-07 20:55:41'),(57,1,'','eric perry','','','supplementalemail1@gmail.com','','','','','','','','','','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy--sorry to waste your time--I found my answer. Thank you.\r\n\r\nEric','2021-08-07 22:39:00'),(58,1,'','Sarah Siddique','','','kostenfam@gmail.com','7046160723','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Hello,\r\nI’d like to see if I can come view the following property when it comes available for showing soon: \r\n1019 Mistywood Lane, Concord, NC.  \r\n\r\nThank you!\r\nSarah & Noman Siddique','2021-08-11 22:34:27'),(59,1,'','Christine Laramee MD','','','clarameemd@gmail.com','7276393962','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans!','2021-08-16 14:56:30'),(60,1,'','Christine Laramee MD','','','clarameemd@gmail.com','7276393962','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans!','2021-08-16 14:56:49'),(61,1,'','Christine Laramee MD','','','clarameemd@gmail.com','7276393962','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hi Julie , just to create the contact. We just \\\"met\\\"  via Dara. I will call you this week. just to let you know about the plans!','2021-08-16 14:56:57'),(62,1,'','Mia ONeil','','','arbri56@yahoo.com','8284174819','','','','','','','','','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. There is a piece of land off Zion hill road marion NC, between Wilson farm drive and Hardrock road. I was wondering how much land and the price.  Thanks.  Please email.','2021-08-16 17:55:53'),(63,1,'','Michael Helms','','','jmichaelhelms@gmail.com','7046347432','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-09-09 11:04:47'),(64,1,'','Alicia Thomas','','','atkinsalicia85@gmail.com','7049616778','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-09-10 04:43:50'),(65,1,'','Cristy Morgan','','','cristy0357@yahoo.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/evonne-caudill/',549,'agent_info','','','','','Hi Evonne Caudill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help I am Ryan and Skylar\\\'s mom and I am looking somewhere between Oakboro and Concord I found this property I didn\\\'t know if I could possible look at it or if you could find more properties   2281 Munsen Rd | $189,999 | 3 Beds 2 Baths you can just email me back I phone is not working at the moment.','2021-09-14 04:06:39'),(66,1,'','Karen','','','kfran@me.com','919-802-7512','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lynnette-gearing/',393,'agent_info','','','','','Hi Lynnette, i was looking at the land on 6770 zion church road, concord. The listing says it has a WSACC outfall crossing it. Does this mean a sewer line crosses the property? Do you have a platt to show where this line is? Any other contor maps or flood plains that you can send me? We live in Chapel Hill and are interested in the property but would like these questions answered before we drive down. Thank you','2021-09-24 01:45:58'),(67,1,'','David pratt','','','dpconcord@aol.com','7047962193','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Murray location \r\nIs the water deep enough for a pontoon. I’ve seen how the dock is tied to a tree I know it needs repair. But do you know how deep it is at the end of the cove?\r\nThanks \r\n\r\nSent from my iPhone\r\nDavid','2021-10-05 19:29:30'),(68,1,'','Lara O’Guin','','','laraoguin117@gmail.com','704-798-3553','','','','','','','','I\'m a tennant','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hi Paula! My husband Jared and I are currently living in Salisbury, and we are looking to sell in hopes of purchasing some land to build our forever home on! I can be reached by email or by phone any time of day. Thank you for your time and I look forward to speaking with you!','2021-10-10 13:33:16'),(69,1,'','Kristin Beach','','','luckydoglanddeals@gmail.com','6155892494','','','','','','','','Other','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','I am an investor with these properties under contract to purchase. My contract allows me to market it for sale on the MLS with plans of simultaneously closing. I\\\'ve already run a preliminary report with title and it is clear to close. At this time, I would like to bring on a real estate agent. I can offer to pay 6% commission with 3% to go to the seller\\\'s agent and 3% to the buyer\\\'s agent. Below, please find the APN, address and name on deed.  Please review and let me know your thoughts. I mainly need help to: \r\n1) Field phone calls from prospective buyers and get it under contract\r\n2) Oversee the property on sight: make recommendations, flag corners, put up a sign\r\n3) Assistance with contract to close arrangements via the title agent: Infinity Abstract and Title\r\n4) Property Marketing\r\n\r\n Acres / APN / Location / State / Name on Deed\r\nProperty #1:\r\nAcres: 7.44\r\nAPN: 6681-00-87-1168\r\nLocation: LONG CREEK LN - BRYSON CITY, NC 28713 \r\nCounty: NC-SWAIN COUNTY\r\nName on Deed: Patrick Ross\r\n\r\nProperty #2:\r\nAcres: 12\r\nAPN: 6683-00-59-9654\r\nLocation: GOVERNORS ISLAND RD - BRYSON CITY, NC 28713\r\nCounty: NC-SWAIN COUNTY\r\nName on Deed: Kenneth Woods','2021-10-18 17:54:48'),(70,1,'','Ioana Workman','','','ioanaworkman@gmail.com','321-652-5596','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-10-19 00:53:38'),(71,1,'','William Bass','','','wbass1968@gmail.com','7042231832','','','','','','','','Other','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-10-21 23:08:48'),(72,1,'','Denise Pate-SisBro Ventures, llc','','','denisepate42@gmail.com','843-601-2595','','','','','','','','Other','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy,\r\nWas stunned to learn you had left APM but hope you are doing well in this new endeavor. Would like to speak to you concerning value/listing on one of the houses. Call when you have a moment. Thanks','2021-10-25 22:25:14'),(73,1,'','Denise Pate-SisBro Ventures, llc','','','denisepate42@gmail.com','843-601-2595','','','','','','','','Other','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy,\r\nWas stunned to learn you had left APM but hope you are doing well in this new endeavor. Would like to speak to you concerning value/listing on one of the houses. Call when you have a moment. Thanks','2021-10-25 22:25:26'),(74,1,'','Alicia woodward','','','Aliciadrealestate@gmail.com','7042240448','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Hi Deana Petty, I spoke with an agent at Latern and would love to learn more about you offer your agents! Thank you!','2021-10-27 20:14:12'),(75,1,'','Joe Hicks','','','buffettmanjoe@gmail.com','704-572-2660','','','','','','','','Other','','','https://lantern-realty.com/agent/paige-wiser/',1507,'agent_info','','','','','65Willow St. \r\nHey Paige. I forgot to ask about when Don plans on changing utilities over to him. I don’t want to cut them off before he has a chance to put them in his name.','2021-11-03 18:41:36'),(76,1,'','Bill Birckhead','','','billbirckhead@gmail.com','704-490-1600','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge\r\n\r\n◦ I\\\'m very interested in this property but see it has a Pending offer. If this offer falls through or if I can make an offer on it please let me know. I have cash and,or financing already approved. \r\nThank you\r\nBill\r\n\r\n8614 State Highway 89 W\r\nWestfield NC','2021-11-05 20:55:11'),(77,1,'','Austin Burleson','','','furrlindsey_030189@yahoo.com','7044386787','','','','','','','','Other','','','https://lantern-realty.com/agent/jody-clodfelter/',598,'agent_info','','','','','Hey Jody,  its Austin at 888 Sorrel Lane Oakboro Sean Blacks son.  We are weighing options of possibly selling our home and would like to know if you have a round about idea of what it would bring in the current market.  We have added a Fireplace, laminet flooring, quartz countertops, fenced in back yard, large deck, and porched in area.  The rest of the house is stock I guess you could say.  Let me know what you think when you have a minute.\r\n\r\nThanks,\r\n\r\nAustin','2021-11-11 17:06:34'),(78,1,'','Ray Holt','','','ray.holt@holtnc.com','704.634.9591','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Chris,\r\nI am looking for larger pieces of land served by municipal water and sanitary sewer in Salisbury.  Would you either help me or refer me to your land broker?\r\n\r\nThank you for your help.\r\n\r\nRay','2021-11-30 21:27:34'),(79,1,'','TEST','','','test@gmail.com','7045551234','','','','','','','','','','','https://lantern-realty.com/agent/ivan-henrickson/',1551,'agent_info','','','','','Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2021-12-01 14:56:32'),(80,1,'','Patricia Campbell','','','glory_grace@windstream.net','7048551823','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lynnette-gearing/',393,'agent_info','','','','','Hi Lynnette.\r\n\r\nWe are interested in your listing at 201 JACKSON STREET, MOUNT PLEASANT, NC 28124.  Are there any pictures of the inside?  We\\\'re planning on downsizing early next year and are now looking seriously.\r\n\r\nThanks.','2021-12-08 21:14:37'),(81,1,'','Juan Almaras','','','juanalmaras6@gmail.com','9805655595','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in advice and guidance into buying a home. I have heard great things about you from families that you have helped in their process of buying their new homes. Thank you for your time it is greatly appreciated. \r\n\r\nGod Bless.','2021-12-10 00:10:35'),(82,1,'','Juan Almaras','','','juanalmaras6@gmail.com','9805655595','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in starting to make plans for buying a home as well as guidance and advice. We have heard great things about you helping families in the community by making their dreams come true with their new home. \r\n\r\nGod Bless and thank you\r\n- Juan Almaras y Lisa Navarrete','2021-12-15 19:20:43'),(83,1,'','Juan Almaras','','','juanalmaras6@gmail.com','9805655595','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help in starting to make plans for buying a home as well as guidance and advice. We have heard great things about you helping families in the community by making their dreams come true with their new home. \r\n\r\nGod Bless and thank you\r\n- Juan Almaras y Lisa Navarrete','2021-12-15 19:21:29'),(84,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:28:52'),(85,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:29:30'),(86,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:30:25'),(87,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/brenda-brown/',528,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:31:25'),(88,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/dale-bullock/',788,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:32:01'),(89,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/crystal-cauble/',380,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:32:41'),(90,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/evonne-caudill/',549,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:33:22'),(91,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/tan-crawford/',2169,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:33:53'),(92,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/jenna-cook/',1393,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:34:47'),(93,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/michael-davis/',801,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:35:25'),(94,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-drakulich/',383,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:36:16'),(95,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 19:37:47'),(96,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/taylor-david-mcclure/',1510,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:08:53'),(97,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/ashley-ferlauto/',645,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:09:29'),(98,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/cecilia-maria-ferrari/',2082,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:10:16'),(99,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/erin-hyman/',2171,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:10:45'),(100,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/yira-garcia/',551,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:11:19'),(101,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/evelin-lisseth-hernandez/',2165,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:11:59'),(102,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/cathy-hager/',553,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:12:42'),(103,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/conard-haywood/',814,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:20:12'),(104,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/lezli-rae-leath/',2167,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:21:46'),(105,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:22:19'),(106,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:22:45'),(107,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/stephanie-e-morgan/',2163,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:23:19'),(108,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/hosanna-hill/',555,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:23:53'),(109,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/melissa-jackling/',390,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:24:25'),(110,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/christine-jalynski/',476,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:24:52'),(111,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/priscilla-johnson/',819,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:25:26'),(112,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/kelly-keller/',503,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:26:08'),(113,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/misty-lynn-moss/',2086,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:27:20'),(114,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/melissa-lacroix/',424,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:28:14'),(115,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/dawn-lamb/',825,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:28:50'),(116,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/sandi-laney/',427,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:29:31'),(117,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:30:12'),(118,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/helen-matthews/',481,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:30:41'),(119,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/lindsey-mccauley/',400,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:31:47'),(120,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/connie-merrell/',828,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:32:50'),(121,1,'','Jami Eager','','','jeager@concordlakeacademy.org','','','','','','','','','Other','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Greetings from Concord Lake STEAM Academy!  \r\n\r\nThe intention of this email is to let you be aware of our school for your clients. With new people moving to Cabarrus County every day, we understand that some may LOVE a house that is shown to them but may not necessarily LOVE the school district they are situated in.  \r\n \r\nThis is where we come in. CLSA is a Free Public - Kindergarten - 8th-grade school. It doesn’t matter what district you live in, as long as you live in the state of North Carolina. We also focus on hands-on learning, which many parents love and our main focuses are science, technology, engineering, arts & math, or STEAM!\r\n \r\nWe are currently accepting applications for THIS School Year and are also accepting applications for NEXT school year!  \r\n \r\nIf you have a family who is moving to the area and is looking for a school for their K – 8th-grade child, please recommend our school.   \r\n\r\nYou may not know a lot about our school, but please reference some of our qualifications below. \r\nDuring the 2020-2021 Testing Period for End of Grades,  \r\n•	CLSA EXCEEDED Kannapolis City schools in 3rd, 4th6th & 7th Grade Math Testing Scores. \r\n\r\n•	CLSA EXCEEDED Kannapolis City Schools in 3rd, 4th, 5th 6th, 7th & 8th Grade ELA Testing Scores.  \r\n\r\n•	CLSA also Exceed the State of NC scores in 3rd Grade ELA, 5th Grade Science, 7th Grade Math & 7th Grade ELA. \r\n\r\n•	Our school also focuses on giving back to the community by participating in the collection of Toys for Tots, the Cabarrus County Human society, The Lupus foundation as well as many other worthy causes.  \r\n\r\nTo learn more about our school, please visit our website at www.ConcordLakeAcademy.org.','2021-12-15 20:33:24'),(122,1,'','Dana Coulston','','','dana.coulston@yahoo.com','8436942577','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tricia-strickland/',620,'agent_info','','','','','Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help I seen that 805 Gold Hill Ave in Rockwell is about to come available and I really love it and it is in my kids school district so was wondering when is it available to look at? If you could let me know that would be great thanks!','2021-12-20 19:13:04'),(123,1,'','Sean Ryan','','','sjryan@charter.net','8283183041','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/doreen-shaughnessy/',2029,'agent_info','','','','','Hi Doreen,\r\nMy wife and I are interested in your listing at 3 Northview Ln. We were wondering when the listing would be active and when we could schedule a showing. She is a licensed agent with Carolina Mountain sales. \r\n\r\nThanks,\r\nSean','2022-01-06 14:49:01'),(124,1,'','Cierra Young','','','cicinicole88@gmail.com','9803308622','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help with a property I saw listed for sale.','2022-01-11 21:49:25'),(125,1,'','Michele Bailey','','','cookingwithmichele@hotmail.com','7047017128','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/karie-sturdevant/',2023,'agent_info','','','','','Hi Karie Arem, I saw your profile on Lantern Realty and Development and wanted to see if I can get some help. I have found a home I am interested in. I have not been preapproved and not really sure what steps to take. I was given your information from Nathan Yon whose brother in Law David Earnhardt used you and gave me your name. I hope to hear from you soon.','2022-01-21 19:16:28'),(126,1,'','Toby Russell with north group real estate.','','','tobymrussell@gmail.com','3366891702','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/brianne-watson/',563,'agent_info','','','','','Hi Brianne, I had a client looking at 707 Frontier cir. I’m not in your mls but could you tell me if you have the room sizes on it and are there any deed restrictions?','2022-01-24 13:45:34'),(127,1,'','Erica Zimmerman','','','ezimm930@gmail.com','5164298275','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/april-bird/',565,'agent_info','','','','','Hi April, my friend Christina Tepedino gave me your phone number. I currently live on Long Island in New York with my husband and son but we wanted to start looking down in North Carolina and possibly South Carolina to\r\nGet an idea on areas; my husband retires in two years and we are done with NY lol. \r\nWe really don’t know any areas down there—we are looking to be more rural with more land. And a good school district…Would you be able to help us?\r\n\r\nThanks! \r\nErica','2022-01-28 23:45:35'),(128,1,'','Devon Goolsby','','','dgoolsby624@gmail.com','7046173114','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sherri-wiles-argabright/',1408,'agent_info','','','','','Hi Sherri Wiles Argabright, I was recommended to reach out to you as I start my home search in the Concord/Kannapolis area! I am a first-time home buyer. I am moving from Hickory, NC to the Concord/Kannapolis area around June and looking to buy. I am preferably looking to settle in the Kannapolis area. \r\n\r\nI would love to chat and see if working together would be a good fit! \r\n\r\nThank you! \r\nDevon Goolsby','2022-01-31 01:14:56'),(129,1,'','Michael Key','','','michaelkey24@yahoo.com','704-640-9767','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi Pam Lambert, I saw your name on a sign in our development. You actually helped us buy our first home. We are looking for a change and hope you can help.','2022-02-06 01:21:34'),(130,1,'','Karen Petersen','','','kpetersen@healyrealtors.com','6097581776','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/conard-haywood/',814,'agent_info','','','','','Hi Conard Haywood, I saw your listing at 2300 Heritage and wanted to see if i can get some help. I am a realtor with Berkshire Hathaway Home Services Healy Realtors in NJ, and I am looking for a new home for our extended family in the Concord area. I was wondering if this property has any other photos, mostly of the inside of the home? Also, do you know why the previous deal fell through? I am not looking to subdivide, but clear the land and build a small horse farm, so if you can explain the property lines it would also be helpful. Thanks! God bless','2022-02-10 01:03:24'),(131,1,'','Chase Winslow','','','chasewinslow1@gmail.com','3363838275','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melissa-yates/',579,'agent_info','','','','','Hi Melissa, I am extremely interested in a property that you have just listed in Lake James.  If you can please give me a call at your earliest convenience, that would be much appreciated.  My cell is 336-383-8275, you are welcome to call me at any time.  I look forward to speaking with you!','2022-02-11 02:04:50'),(132,1,'','Kimberly Sanchez','','','kpv237@gmail.com','3862906696','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim Sadler, I saw a property that you are currently showing (255 Winding Way, Salisbury, NC 28147). I am interested, and wondering what the current status of the property is. Please reach out at your convenience.','2022-02-13 19:07:26'),(133,1,'','Stephanie Stallings','','','stephaniemkuntz@gmail.com','5714201889','','','','','','','','','','','https://lantern-realty.com/agent/kelly-robinson/',836,'agent_info','','','','','Hi Kelly!\r\n\r\nI was given your info from my cousin Sydney Falls! We are looking into moving to Kannapolis in a little less than a year. we are considering new builds but want some help in that contract process (looking for fixed contracts) and just some general info on the area and what the next year might look like. \r\n\r\nlooking forward to connecting!','2022-02-14 20:17:14'),(134,1,'','Stephanie Stallings','','','stephaniemkuntz@gmail.com','5714201889','','','','','','','','','','','https://lantern-realty.com/agent/kelly-robinson/',836,'agent_info','','','','','Hi Kelly!\r\n\r\nI was given your info from my cousin Sydney Falls! We are looking into moving to Kannapolis in a little less than a year. we are considering new builds but want some help in that contract process (looking for fixed contracts) and just some general info on the area and what the next year might look like. \r\n\r\nlooking forward to connecting!','2022-02-14 20:17:24'),(135,1,'','Sandy Rivera (Braswell)','','','diepparivera@gmail.com','7045165448','','','','','','','','','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Hi Deana, It\\\'s Sandy. I need advice and, of course, you\\\'re the first person I\\\'m turning to. Our renter, Faye Brown, passed away last month at the age of 99 ... just 2 months shy of her 100th birthday. We loved her and will miss her. Now I need to decide what to do:  stay in my side of the duplex, renovate and rent out the other side; or do some repairs to both sides and sell. (Selling and buying may be tough right now; property values have increased a lot!)  Could you please call me to advise and help me make a decision on what\\\'s best for me at this time?  My number is 704-516-5448. Would be nice to talk to you about the duplex and your family, kids, Melanie and Ricky.  Regards, Sandy','2022-02-17 16:37:17'),(136,1,'','Joseph Steele','','','joseph.w.steele@gmail.com','5615076065','','','','','','','','Other','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Hi Liz Hallman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-02-22 22:34:32'),(137,1,'','Mike Davis','','','mike.d@kw.com','','','','','','','','','','','','https://lantern-realty.com/agent/courtney-sloan-holshouser/',1449,'agent_info','','','','','Hey Courtney. Regarding your listing at 494 Vera Drive. Does it have a crawl space?\r\n\r\nThanks, Mike','2022-02-25 19:27:50'),(138,1,'','wendy compton','','','comptonw777@gmail.com','8432901840','','','','','','','','','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, I am looking for your cleaning service for my airbnb now. We emailed before and I had someone else that wanted to do this from my family. They have become very busy and I need additional help. If you are still interested please email me. \r\nThanks, Wendy','2022-03-03 14:31:27'),(139,1,'','Jennifer','','','jennifer@femexec.com','910 431 6334','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','I am interested in 17356 Randall\\\'s ferry.','2022-03-04 03:43:03'),(140,1,'','Robert Schupp','','','slyweasl@carolina.rr.com','704-469-5656 (VP) for the deaf','','','','','','','','Other','','','https://lantern-realty.com/agent/deanna-miltz/',558,'agent_info','','','','','Hi Deanna Miltz, I am the treasurer for Oakleaf Homeowners Assn. I spoke with Anita Camphen ?(spelling may be incorrect due to her cursive writing) . Anyway I’m contacting you to see if your agency contacted our HOA and IF a “right-of-first-refusal” form was signed between Anita and our President Patrick Brown before the closing ? Also I was not informed of this sale and as such I was not given the opportunity to send and invoice of 200.00 accessed to the BUYER for a “document fee” according to our by-laws . Can you reply by email please if these 2 transactions were completed before the closing on unit 617 Camrose Circle NE , Concord NC 28025 . If I don’t hear from you then I’ll contact Knipp Law Office at their address and phone number to verify what exactly was done prior to the sale of this unit which was sold by Jim & Willene Price. Thank you for your time and help …. Robert Schupp','2022-03-09 20:38:24'),(141,1,'','Anon Ymous','','','Voodoo@yahoo.com','704-567-9125','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jerry-lambert/',1405,'agent_info','','','','','Hi Jerry,\r\n\r\nThought I\\\'d let you know(since you\\\'re not smart enough to figure it out) that you missed the absolute best offer you would have received on a Concord home for sale that ended yesterday(3.13.22) only because of your arrogant, self-righteous, rude & \\\"that\\\'s the buyer\\\'s problem\\\" attitude!\r\n\r\nI\\\'m sure I\\\'m not the first person to tell you this & know I won\\\'t be the last!!! So say hello to lost opportunities & #instantkarma.','2022-03-14 12:28:26'),(142,1,'','Anon Ymous','','','Voodoo@yahoo.com','704-567-9125','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jerry-lambert/',1405,'agent_info','','','','','Hi Jerry,\r\n\r\nThought I\\\'d let you know(since you\\\'re not smart enough to figure it out) that you missed the absolute best offer you would have received on a Concord home for sale that ended yesterday(3.13.22) only because of your arrogant, self-righteous, rude & \\\"that\\\'s the buyer\\\'s problem\\\" attitude!\r\n\r\nI\\\'m sure I\\\'m not the first person to tell you this & know I won\\\'t be the last!!! So say hello to lost opportunities & #instantkarma.','2022-03-14 12:28:35'),(143,1,'','Louisa Casarez','','','lcasarez042@gmail.com','7044601987','','','','','','','','Other','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help, regarding a rental in Gastonia In Riverwood Planation','2022-03-15 13:23:02'),(144,1,'','Khari D. Williams','','','Hondo1899@gmail.com','7065339371','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brittney-steele/',2274,'agent_info','','','','','Hi Brittney Steele, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help locating an investment property. My name is Khari D. Williams and I am energetically looking for an investment property. I\\\'m seeking a Single-family or multi-family property with a price point between 60-200k. Willing to pay the higher end for a multi-family home.\r\n \r\nI have my pre-approval letter in hand and will forward you a copy if you are willing to work with me. \r\n\r\nThank you for your time','2022-03-17 08:35:17'),(145,1,'','Layne','','','lhinson8662@cms.k12.nc.us','','','','','','','','','Other','','','https://lantern-realty.com/agent/susan-starnes/',617,'agent_info','','','','','Hi Grammy!!!!!!','2022-03-21 01:47:09'),(146,1,'','Richard Ross','','','richardaross@yahoo.com','18175646467','','','','','','','','','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','Hi Chris , is there a floorplan available for 508 Main St in Kannapolis?  Thank you!','2022-03-24 21:16:11'),(147,1,'','Carol Harris','','','cah2451@aol.com','7046401160','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/marguerite-keller/',576,'agent_info','','','','','Hi Marguerite Keller, \r\nWe are very interested in the building lot located in Summerfield','2022-03-27 13:44:11'),(148,1,'','Anjali Wilson','','','wilsonanjali0@gmail.com','7047462778','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Hi Deana, I’m a new agent looking into affiliating with your from the current one I am at. I actually work with Lissette in Concord office. She recommended I reach out to you as she’s pursuing her real estate license and get a little more information. I would love to hear back from you at your earliest convenience. Thank you!','2022-03-30 15:15:37'),(149,1,'','Brian & Natalie Gray','','','natalie.gray86@yahoo.com','7042132450','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim Sadler, wanted to see if you could come look at our house 145 Winding Way Salisbury, NC 28147. We are thinking about selling.','2022-03-31 00:07:01'),(150,1,'','Noah Malpass','','','noah.malpass@gmail.com','4342037706','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/courtney-sloan-holshouser/',1449,'agent_info','','','','','Hi Courtney! \r\nI saw your property on 2025 brewer rd and think it has a lot of potential for a flip. What can you tell me as far as any damages on the inside, motivation of the sellers, and how much the estimated ARV in that neighborhood would be?\r\n\r\nThank you\r\n\r\nNoah Malpass','2022-04-04 10:24:02'),(151,1,'','Denise Louise Bump','','','denise@dbump.com','3367849941','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/courtney-sloan-holshouser/',1449,'agent_info','','','','','Good morning, Courtney.\r\nI am a real estate investor and saw one of your listings that I would be interested in seeing (2025 Brewer Rd). I have flipped 5 properties over the last few years and I have been looking for a new project. I would have a hard money lender for this project and provide a letter with proof of funds.','2022-04-04 13:10:04'),(152,1,'','Hunter Miller','','','hunter.miller87@outlook.com','9803650502','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jenna-cook/',1393,'agent_info','','','','','Hi Jenna Cook, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. Extremely interested in the Rimer property. Would be a cash offer. We are scheduled to come Thursday am at 9 am.','2022-04-05 02:08:25'),(153,1,'','Hunter Miller','','','hunter.miller87@outlook.com','9803650502','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Hi Liz Hallman, I saw your profile on LanterRealty and Development and wanted to see if i can get some help. I sent Jenna and email but extremely interested in the Rimer property. This would be a cash offer. Have an appointment at 9 am Thursday with my realtor.','2022-04-05 02:10:10'),(154,1,'','Stephen Copeland','','','copes370z@gmail.com','6785700689','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brianne-watson/',563,'agent_info','','','','','Hi Brianne Watson, I saw your listing for 0 Cloud Top Ln, Mooresville, NC 28115, $199k, for 5.677 acres, and wanted to know if the seller would be will to split the parcel down the stream and sell half? I will offer $100k for the property, and may have a buyer for the other half. I am a real buyer, please let me know. Im in a meeting until noon, but free after. Lets work out a deal either way. Thank you,\r\n-Stephen','2022-04-07 02:44:27'),(155,1,'','Michael King','','','TheKingSellsTheDream@gmail.com','7044503936','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi Wendell just wondering if you might have a few minutes to chat sometime?','2022-04-07 21:44:47'),(156,1,'','Michael King','','','TheKingSellsTheDream@gmail.com','7044503936','','','','','','','','I\'m an agent','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi Wendell just wondering if you might have a few minutes to chat sometime?','2022-04-07 21:50:01'),(157,1,'','Wendy Roseman','','','wendyroseman@gmail.com','336-807-0442','','','','','','','','Other','','','https://lantern-realty.com/agent/brianne-watson/',563,'agent_info','','','','','Hey Brianne, this is Wendy Roseman, Michael\\\'s mom. Michael tells me you have your realtors license. We have a piece of land across from where Michael and Laura live that we\\\'d like to talk to you about selling.','2022-04-09 22:07:03'),(158,1,'','Tia Turner','','','tmturner70061@gmail.com','8049821070','','','','','','','','Other','','','https://lantern-realty.com/agent/chris-puckett/',114,'agent_info','','','','','YOUR BROKER COURTNEY HEDRICK.... BROKER IN CHARGE OF SPEEK, HER SON WILL KNOWINGLY AND DELIBERATELY SOLD ME A HOME IN WINSTON-SALEM WITH MOLD AND MILDEW AND DID NOT DISCLOSE IT. REALTORS SHOWING THE HOME TEXTED WILL WITH REMARKS AND PICS OF THE EVIDENCE. WILL\\\'S RESPONSE WAS \\\"THAT\\\'S INTERESTING.\\\" THE STATE IS INVESTIGATING MY COMPLAINT WE HAVE DOCUMENTAIION FROM REALTORS THAT WILL REFUSED TO LISTEN TO. HE COVERED THE MOLD PROBLEM UP!!!!\r\nHE FLED TO NYC AND I NOTIFIED HIS BOSS OF HIS DELIBERATE COVER UP AND SELLING ME THE HOME AS A DUAL AGENT WITH MOLD AND MILDEW, AND, THE FRIDGE, CHANDELIER AND COOKTOP WERE STOLEN. HIS EXPLANATION THEY SAWED THE LOCK BOX OFF AND CAME IN THE BASEMENT. WILL HEDRICK REFUSED TO DISCLOSE THE POLICE REPORT.\r\nHE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. I INFORMED HER OF THE GROSS NEGLIGENCE AND MISCONDUCT OF WILL WITH THE DETAILS AND DOCUMENTATION.\r\n\r\n HE WAS IMMEDIATLEY LET GO IN NYC BY THE CANDICE MILANO TEAM. MYSELF AN OTHER REALTORS TALKED TO THE BOSSES.\r\n\r\n HEDRICK DIDN\\\'T WANT OR ENCOURAGE ME TO HAVE AN INSPECTION. HE SAID RON AND HE WERE SO HAPPY I DID NOT DO AND INSPECTION.\r\n\r\nCOURTNEY HEDRICK WITH WILL ARE DISPICABLE REALTORS TO CON ME KNOWING THERE WAS MOLD AND MILDEW AND A HOST OF OTHER VERY, VERY, VERY BAD PROBLEMS. TOO MANY TO LIST.\r\n HEDRICK IS A VERY UNETHICAL, CON MAN AND THE REALTORS CONFIRMED THAT FACT. YOU SHOULD KNOW WHAT THE HEDRICK TEAM DOES TO SUCK MONEY OUT OF BUYERS, ABSOLUTELY TERRIBLE. HORRIBLE PEOPLE!!!!!! THE STATE AND LEGAL TEAM ARE INVESTIGATING THIS COUPLE ASSOCIATED WITH LANTERN REALTY.','2022-04-12 00:27:22'),(159,1,'','Tia Turner','','','tmturner70061@gmail.com','8049821070','','','','','','','','','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','PAULA,\r\nWILL HEDRICK A FORMER AGENT WITH YOUR AGENCY, AND COURTNEY HEDRICK ARE NOW IMPLICATED IN A STATE NC REAL ESTATE BOARD FOR NOT DISCLOSING MOLD/MILDEW/MOISTURE INTRUSION IN A HOME I BOUGHT FROM THEM IN JANUARY 2022. WILL WAS SEND TEXTS AND PICS BY REALTORS, IN PARTICULAR ROYDA TURMAN A WELL KNOWN WINSTON REALTOR THAT THE HOME HAD PROBLEMS IN SUMMER 2021. HE DENIED AND SAID \\\"THAT\\\'S INTERESTING.\\\" WILL HEDRICK IS A PATHOLOGICAL NARCSSTIC LIAR WHO LIES AND GROSSLY UNETHICAL!! HE LIED ABOUT EVERYTHING, AND HE IS TOTALLY INCOMPETENT AND STUPID. I HAVE FILED A COMPLAINT WITH THE STATE AND THEY HAVE AN INVESTIGATION. WILL AFTER HE CLOSED MY HOUSE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. ROYDA TURMAN, REALTOR AND I INFORMED CANDICE OF ALL THE MISDEEDS, LACK OF TRANSPARENCY, MADE UP SPEEK HOME INSPECTION WAIVER FORM, AND ALL HIS LIES, LIES AND UNETHICAL MISCONDUCT. WILL WAS IMMEDIATELY FIRED!!! MILANO INFORMED ME,\r\nHE STRONGLY TOLD ME NOT, NOT TO GET A HOME INSPECTION.ITS PERFECT THEY SAID!!\r\n AFTER I MOVED INTO THE HOUSE ITWAS HELL, WATER HEATER BROKEN, SEWER PUMP BROKEN. BROKEN HVAC HEATING FAN!!! LAST SUMMER WHEN WILL HAD THE PROPERTY, IT WAS BROKEN INTO. HE STATED THE LOCK BOX HAD BEEN SAWED INTO, 10K CHANDELIER, FRIDGE, AND COOKTOP TAKEN. HE MADE A POLICE REPORT. EVERYONE IN BENT TREE KNOWS IT WAS AN INSIDE JOB~~ HIS SQUARE FOOTAGE WAS INCORECT AND WHEN I GOT THE OFFICIAL APPRASIAL THE FOOTAGE  WAS WAY OFF!!!!! BE AWARE OF THE LYING HIGH LIABILTY HEDRICKS!!!!\r\nIF YOU NEED TO CALL ME FEEL FREE. TIA 8049821070','2022-04-14 14:45:06'),(160,1,'','Tia Turner','','','tmturner70061@gmail.com','8049821070','','','','','','','','','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','PAULA,\r\nWILL HEDRICK A FORMER AGENT WITH YOUR AGENCY, AND COURTNEY HEDRICK ARE NOW IMPLICATED IN A STATE NC REAL ESTATE BOARD FOR NOT DISCLOSING MOLD/MILDEW/MOISTURE INTRUSION IN A HOME I BOUGHT FROM THEM IN JANUARY 2022. WILL WAS SEND TEXTS AND PICS BY REALTORS, IN PARTICULAR ROYDA TURMAN A WELL KNOWN WINSTON REALTOR THAT THE HOME HAD PROBLEMS IN SUMMER 2021. HE DENIED AND SAID \\\"THAT\\\'S INTERESTING.\\\" WILL HEDRICK IS A PATHOLOGICAL NARCSSTIC LIAR WHO LIES AND GROSSLY UNETHICAL!! HE LIED ABOUT EVERYTHING, AND HE IS TOTALLY INCOMPETENT AND STUPID. I HAVE FILED A COMPLAINT WITH THE STATE AND THEY HAVE AN INVESTIGATION. WILL AFTER HE CLOSED MY HOUSE FLED TO NYC TO WORK AT THE CANDICE MILANO TEAM. ROYDA TURMAN, REALTOR AND I INFORMED CANDICE OF ALL THE MISDEEDS, LACK OF TRANSPARENCY, MADE UP SPEEK HOME INSPECTION WAIVER FORM, AND ALL HIS LIES, LIES AND UNETHICAL MISCONDUCT. WILL WAS IMMEDIATELY FIRED!!! MILANO INFORMED ME,\r\nHE STRONGLY TOLD ME NOT, NOT TO GET A HOME INSPECTION.ITS PERFECT THEY SAID!!\r\n AFTER I MOVED INTO THE HOUSE ITWAS HELL, WATER HEATER BROKEN, SEWER PUMP BROKEN. BROKEN HVAC HEATING FAN!!! LAST SUMMER WHEN WILL HAD THE PROPERTY, IT WAS BROKEN INTO. HE STATED THE LOCK BOX HAD BEEN SAWED INTO, 10K CHANDELIER, FRIDGE, AND COOKTOP TAKEN. HE MADE A POLICE REPORT. EVERYONE IN BENT TREE KNOWS IT WAS AN INSIDE JOB~~ HIS SQUARE FOOTAGE WAS INCORECT AND WHEN I GOT THE OFFICIAL APPRASIAL THE FOOTAGE  WAS WAY OFF!!!!! BE AWARE OF THE LYING HIGH LIABILTY HEDRICKS!!!!\r\nIF YOU NEED TO CALL ME FEEL FREE. TIA 8049821070','2022-04-14 14:45:30'),(161,1,'','Amanda Schenk','','','schenkfamily1983@yahoo.com','3362664174','','','','','','','','Other','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, \r\nWe just bought the house at 795 Murray Dr, Salisbury, NC.\r\nThere were a couple of Contractors Invoices left from the day before closing.  Also your last Duke Energy bill arrived.  Where would you like us to send these.','2022-04-18 01:20:17'),(162,1,'','Karen Condon','','','kc2100@live.com','3362029935','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi I saw your listing in Rockwell,\r\n$257,250\r\n 24.5 acre lot\r\nBasinger Kluttz Rd, Rockwell, NC 28138\r\nWondered if you had detailed info...Why not selling?  Super steep?  Any other issues?\r\nThanks Karen','2022-04-19 19:21:30'),(163,1,'','Karen Condon','','','kc2100@live.com','3362029935','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi I saw your listing in Rockwell,\r\n$257,250\r\n 24.5 acre lot\r\nBasinger Kluttz Rd, Rockwell, NC 28138\r\nWondered if you had detailed info...Why not selling?  Super steep?  Any other issues?\r\nThanks Karen','2022-04-19 19:27:19'),(164,1,'','Jordan Kennerly','','','jordank@steinfibers.com','7042247478','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/deana-petty/',37,'agent_info','','','','','Hi Deana, \r\n\r\nI wanted to reach out to you and inquire about your services, our your companies services, for a home for Kim and I. \r\n\r\nI look forward to hearing from you soon. \r\n\r\nThank you.','2022-04-20 01:25:40'),(165,1,'','Jim Ryan','','','coachryan9393@gmail.com','8157219150','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine, I was hoping to schedule a time to see the property at 356 Autumn Ln. in Tryon.  We will be back in town and available all day Sunday...or anytime after 4 next week.  Please let me know if any of those times work.   Thank you for your time.','2022-04-21 22:01:48'),(166,1,'','Sandra Matter','','','paintryder@yahoo.com','970-214-6886','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help on 356 Autumn Ln, Tryon, NC 28782 I would like to get more info.','2022-04-21 22:23:26'),(167,1,'','Sally','','','sab1.homes@outlook.com','17044338462','','','','','','','','Other','','','https://lantern-realty.com/agent/sabine-amoakon/',781,'agent_info','','','','','Hi Sabine Amoakon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-04-27 14:24:12'),(168,1,'','Cliff Parker','','','cnmparker@yahoo.com','425-315-6505','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-drakulich/',383,'agent_info','','','','','Hi Kim,\r\nI noticed that you recently had a townhome on the market in Harrisburg Towncenter.\r\nWe have a condo there that we are interested in selling.\r\nOur address is 6410 Kee Lane, Harrisburg, NC 28075\r\n\r\nHere is a little about our situation.\r\nThe condo is our \\\"second home\\\", we actually live in Charleston, SC.\r\nWe were using the condo to visit our son and grandkids, but they recently moved.\r\n\r\nIf working with us to sell our condo is something you would be able to do, please give me a call and we can discuss things further.\r\n\r\nThanks!\r\n\r\nCliff Parker\r\n(425)315-6505','2022-04-29 22:53:36'),(169,1,'','Byron Sherman','','','johnch9vs39@gmail.com','704-213-2286','','','','','','','','Other','','','https://lantern-realty.com/agent/jody-clodfelter/',598,'agent_info','','','','','Hi Jody Clodfelter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nI’m interested in the property @ Austin Rd. & Joe Rd. near Red Cross.  Sq. Footage, acreage, price, etc.  Thank you!','2022-05-14 16:23:43'),(170,1,'','Robin Matthews','','','rmatthews30@gmail.com','7047016434','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brittney-steele/',2274,'agent_info','','','','','Hi Brittney, we just drove by a vacate lot adjacent to Partridge Bluff or in that area. We don’t see it listed on the website. Can you provide some information about this lot? The street was “Wind Ridge” or similar. Thank you!','2022-05-21 00:06:24'),(171,1,'','Jameshia','','','jbaldwin@eckerd.org','Baldwin','','','','','','','','Other','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help. I’m looking for a home to rent','2022-05-22 03:33:39'),(172,1,'','Noni Waite-Kucera','','','noni@enf.org','336-761-1040','','','','','','','','Other','','','https://lantern-realty.com/agent/casey-paige-maness/',2079,'agent_info','','','','','Hello Casey,\r\nI am the Executive Director of Eagle\\\'s Nest Foundation and our campus is adjacent to the house you are listing at 332 Hart Rd., Pisgah Forest.  I sent a message through Zillow but wasn\\\'t sure if that would make it to you.   After conferring with our Board of Trustees we would like to request that you adjust the property description to not include the mention of Eagle\\\'s Nest Camp or our conservation easement. Our campus is home to a summer camp and school and there is no public access.  We don\\\'t want potential buyers to think there may be walking access on our campus that is busy with young people night and day.  I hope you will make this consideration and certainly I am happy to discuss with you over the phone.  I can be reached at 336-761-1040 ext. 102.  Many thanks, Noni','2022-05-25 20:31:29'),(173,1,'','Esteban','','','alfa.thinking@gmail.com','Alfaro','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hello Paula, saw your listing for a lot on high rock lake address is 1026 Emerald Bay Dr. Salisbury NC. Would like o know if the HOA will allow short term rentals.','2022-05-28 17:25:44'),(174,1,'','Sandy Helms','','','sandyhelms68@yahoo.com','704-4410384','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help.\r\nCan you tell me how this property is zoned.\r\nThank you','2022-05-31 13:35:16'),(175,1,'','Austin Freeman','','','Austinf526@gmail.com','7047836735','','','','','','','','Other','','','https://lantern-realty.com/agent/paula-severt/',105,'agent_info','','','','','Hello my name is Austin Freeman, I was recommended to you from my uncle Scott Barbee. I have two lots in Kannapolis, NC that I hoping to put on the market in July as was hoping to get a market appraisal and potentially list it. The properties are 2489 Forrestbrook Dr, Kannapolis, NC, 28083 (0.97 acres) and 2508 Forrestbrook Dr, Kannapolis, NC, 28083 (18 Acres). If you would give me a call at 704-783-6735 or email me back at Austinf526@gmail.com so we can discuss further. Thank you','2022-06-03 00:17:41'),(176,1,'','Jude DeVirgiliis','','','judecarter828@gmail.com','828.964.5174','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I\\\'m Sandy Devirgiliis\\\' child and we were looking at some land that came up for sale and was hoping you could help us figure out if it\\\'s a good purchase for building our home on. It\\\'s 8 silver long road, Asheville NC.','2022-06-03 21:33:02'),(177,1,'','Walter','','','bundyfive@gmail.com','','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amy-bundy/',2283,'agent_info','','','','','Hi Amy Bundy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-06 21:04:13'),(178,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jeremy-aldridge/',370,'agent_info','','','','','Hi Jeremy Aldridge, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:44:56'),(179,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katie-abell/',1904,'agent_info','','','','','Hi Katie Abell, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:45:30'),(180,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sabine-amoakon/',781,'agent_info','','','','','Hi Sabine Amoakon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:46:10'),(181,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/casey-barber/',416,'agent_info','','','','','Hi Casey Barber, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:46:36'),(182,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cheryl-baxter/',785,'agent_info','','','','','Hi Cheryl Baxter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:47:00'),(183,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amy-bundy/',2283,'agent_info','','','','','Hi Amy Bundy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:47:33'),(184,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/toni-benton/',546,'agent_info','','','','','Hi Toni Benton, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:48:09'),(185,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/annie-boger/',111,'agent_info','','','','','Hi Annie Boger Kamp, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:48:34'),(186,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/elizabeth-brown/',126,'agent_info','','','','','Hi Elizabeth Brown, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:48:56'),(187,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dale-bullock/',788,'agent_info','','','','','Hi Dale Bullock, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:49:44'),(188,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/crystal-cauble/',380,'agent_info','','','','','Hi Crystal Cauble, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:50:36'),(189,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jenna-cook/',1393,'agent_info','','','','','Hi Jenna Cook, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:50:58'),(190,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tan-crawford/',2169,'agent_info','','','','','Hi Tan Crawford, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:51:27'),(191,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/evonne-caudill/',549,'agent_info','','','','','Hi Evonne Caudill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:51:45'),(192,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jessica-eudy/',2709,'agent_info','','','','','Hi Jessica Eudy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:52:13'),(193,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/michael-davis/',801,'agent_info','','','','','Hi Michael Davis, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:52:44'),(194,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kim-drakulich/',383,'agent_info','','','','','Hi Kim Drakulich, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:53:04'),(195,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivonne-erion/',808,'agent_info','','','','','Hi Ivonne Erion, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 05:56:42'),(196,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amy-evans/',135,'agent_info','','','','','Hi Amy Evans, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:00:26'),(197,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/taylor-david-mcclure/',1510,'agent_info','','','','','Hi Taylor David McClure, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:00:46'),(198,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cecilia-maria-ferrari/',2082,'agent_info','','','','','Hi Cecilia Maria Ferrari, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:01:05'),(199,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/erin-hyman/',2171,'agent_info','','','','','Hi Erin Hyman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:01:28'),(200,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/yira-garcia/',551,'agent_info','','','','','Hi Yira Garcia, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:01:47'),(201,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sarah-grace-horn/',2308,'agent_info','','','','','Hi Sarah Grace Horn, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:02:09'),(202,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/evelin-lisseth-hernandez/',2165,'agent_info','','','','','Hi Evelin lisseth Hernandez, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:02:33'),(203,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lynnette-gearing/',393,'agent_info','','','','','Hi Lynnette Gearing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:02:57'),(204,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cathy-hager/',553,'agent_info','','','','','Hi Cathy Hager, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:03:15'),(205,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/conard-haywood/',814,'agent_info','','','','','Hi Conard Haywood, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:03:40'),(206,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lezli-rae-leath/',2167,'agent_info','','','','','Hi Lezli Rae Leath, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:04:02'),(207,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tammy-fox/',1655,'agent_info','','','','','Hi Tammy Fox, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:05:04'),(208,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/liz-hallman/',1398,'agent_info','','','','','Hi Liz Hallman, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:05:46'),(209,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/stephanie-e-morgan/',2163,'agent_info','','','','','Hi Stephanie E Morgan, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:06:05'),(210,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/hosanna-hill/',555,'agent_info','','','','','Hi Hosanna Hill, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:06:28'),(211,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melissa-jackling/',390,'agent_info','','','','','Hi Melissa Jackling, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:06:54'),(212,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/christine-jalynski/',476,'agent_info','','','','','Hi Christine Jalynski, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:07:32'),(213,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kelly-keller/',503,'agent_info','','','','','Hi Kelly Keller, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:08:00'),(214,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rochelle-shanae-ogburn/',1907,'agent_info','','','','','Hi Rochelle Shanae Ogburn, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:08:26'),(215,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/misty-lynn-moss/',2086,'agent_info','','','','','Hi Misty Lynn Moss, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:08:46'),(216,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melinda-r-mesimerr/',2711,'agent_info','','','','','Hi Melinda R Mesimerr, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:09:03'),(217,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melissa-lacroix/',424,'agent_info','','','','','Hi Melissa LaCroix, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:09:28'),(218,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dawn-lamb/',825,'agent_info','','','','','Hi Dawn Lamb, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:09:48'),(219,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-lambert/',1402,'agent_info','','','','','Hi Amanda Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:13:24'),(220,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/helen-matthews/',481,'agent_info','','','','','Hi Helen Robb, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:13:46'),(221,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/lindsey-mccauley/',400,'agent_info','','','','','Hi Lindsey McCauley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:14:07'),(222,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/connie-merrell/',828,'agent_info','','','','','Hi Connie Merrell, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:14:27'),(223,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/pam-lambert/',1633,'agent_info','','','','','Hi Pam Lambert, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:14:44'),(224,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/megan-owens/',2713,'agent_info','','','','','Hi Megan Owens, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:15:03'),(225,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-nutter/',484,'agent_info','','','','','Hi Julie Nutter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:15:21'),(226,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jason-overcash/',322,'agent_info','','','','','Hi Jason Overcash, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:15:54'),(227,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/laura-overcash/',430,'agent_info','','','','','Hi Laura Overcash, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:16:25'),(228,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/alicia-love-hammel/',1557,'agent_info','','','','','Hi Alicia Love Hammel, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:16:46'),(229,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/charity-k-meachum/',2280,'agent_info','','','','','Hi Charity K Meachum, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:17:04'),(230,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kelly-robinson/',836,'agent_info','','','','','Hi Kelly Robinson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:17:24'),(231,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/viviana-martinez-campos/',1677,'agent_info','','','','','Hi Viviana Martinez Campos, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:17:44'),(232,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim Sadler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:18:04'),(233,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/chelsi-sherin/',845,'agent_info','','','','','Hi Chelsi Sherin, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:19:07'),(234,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/holden-sides/',848,'agent_info','','','','','Hi Holden Sides, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:19:33'),(235,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/tricia-strickland/',620,'agent_info','','','','','Hi Tricia Strickland, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:19:55'),(236,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/john-suther/',439,'agent_info','','','','','Hi John Suther, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:20:48'),(237,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dawn-wetherbee/',1892,'agent_info','','','','','Hi Dawn Wetherbee, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:21:06'),(238,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brittney-steele/',2274,'agent_info','','','','','Hi Brittney Steele, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:21:24'),(239,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kimberly-trask/',560,'agent_info','','','','','Hi Kimberly Trask, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:21:41'),(240,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brianne-watson/',563,'agent_info','','','','','Hi Brianne Watson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:22:10'),(241,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rick-wilson/',853,'agent_info','','','','','Hi Rick Wilson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:22:33'),(242,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/wendell-rummage/',1685,'agent_info','','','','','Hi Wendell Rummage, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:22:56'),(243,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/todd-wooley/',444,'agent_info','','','','','Hi Todd Wooley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:23:14'),(244,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sherri-wiles-argabright/',1408,'agent_info','','','','','Hi Sherri Wiles Argabright, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:23:44'),(245,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/taina-shaw/',1682,'agent_info','','','','','Hi Taina Shaw, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:24:07'),(246,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/andrew-jason-wetherbee/',2722,'agent_info','','','','','Hi Andrew Jason Wetherbee, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:24:50'),(247,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/michele-tichnor/',1545,'agent_info','','','','','Hi Michele Tichnor, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:25:11'),(248,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amber-tsumas/',2027,'agent_info','','','','','Hi Amber Tsumas, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:25:37'),(249,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/colleen-viteri/',2716,'agent_info','','','','','Hi Colleen Viteri, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:26:13'),(250,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/robbie-bendig/',468,'agent_info','','','','','Hi Robbie Bendig, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:30:26'),(251,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sandra-bean/',1901,'agent_info','','','','','Hi Sandra Bean, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:30:40'),(252,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jessica-cloward/',470,'agent_info','','','','','Hi Jessica Cloward, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:31:00'),(253,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/carmady-king-kruger/',2173,'agent_info','','','','','Hi Carmady King Kruger, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:31:53'),(254,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/deborah-griffin/',573,'agent_info','','','','','Hi Deborah Griffin, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:32:12'),(255,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/melissa-shannon-morefield-valley/',2292,'agent_info','','','','','Hi Melissa Shannon Morefield-Valley, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:32:34'),(256,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/marguerite-keller/',576,'agent_info','','','','','Hi Marguerite Keller, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:33:06'),(257,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/cheyenne-kidd/',822,'agent_info','','','','','Hi Cheyenne Kidd, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:33:35'),(258,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/bret-leonard/',497,'agent_info','','','','','Hi Bret Leonard, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:34:14'),(259,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/mitzi-mcdaniel-smith/',2720,'agent_info','','','','','Hi Mitzi Mcdaniel Smith, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:34:42'),(260,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rodney-queen/',834,'agent_info','','','','','Hi Rodney Queen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:35:04'),(261,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/alexis-devine-smith/',2718,'agent_info','','','','','Hi Alexis Devine Smith, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:35:28'),(262,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/benjamin-allen-surratt/',2302,'agent_info','','','','','Hi Benjamin Allen Surratt, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:36:16'),(263,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/paige-wiser/',1507,'agent_info','','','','','Hi Paige Wiser, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:39:10'),(264,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/maranda-allen/',1514,'agent_info','','','','','Hi Maranda Allen, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:39:32'),(265,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/karie-sturdevant/',2023,'agent_info','','','','','Hi Karie Arem, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:39:46'),(266,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/emily-chandler/',791,'agent_info','','','','','Hi Emily Chandler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:40:22'),(267,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/janice-cannon/',1523,'agent_info','','','','','Hi Janice Cannon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:40:31'),(268,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','','','','https://lantern-realty.com/agent/tracie-clark/',798,'agent_info','','','','','Hi Tracie Clark, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:40:50'),(269,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/david-g-cannon/',2021,'agent_info','','','','','Hi David G Cannon, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:41:04'),(270,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dawn-fisher/',2035,'agent_info','','','','','Hi Dawn Fisher, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:41:19'),(271,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/donna-hiner/',816,'agent_info','','','','','Hi Donna Hiner, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:41:31'),(272,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/aaron-forsyth/',2277,'agent_info','','','','','Hi Aaron Forsyth, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:41:58'),(273,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/deanna-miltz/',558,'agent_info','','','','','Hi Deanna Miltz, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:42:14'),(274,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rick-rhew/',434,'agent_info','','','','','Hi Rick Rhew, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:42:45'),(275,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/hayley-rogers/',839,'agent_info','','','','','Hi Hayley Rogers, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:44:07'),(276,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jamie-stewart/',2289,'agent_info','','','','','Hi Jamie Stewart, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:44:25'),(277,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/susan-starnes/',617,'agent_info','','','','','Hi Susan Starnes, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:44:38'),(278,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/min-zhang/',623,'agent_info','','','','','Hi Min Zhang, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:44:56'),(279,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sheila-allison/',411,'agent_info','','','','','Hi Sheila Allison, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:45:09'),(280,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/brenda-sue-bingham/',1520,'agent_info','','','','','Hi Brenda Bingham, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:45:24'),(281,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jody-clodfelter/',598,'agent_info','','','','','Hi Jody Clodfelter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:45:35'),(282,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/amanda-cody/',601,'agent_info','','','','','Hi Amanda Cody, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:45:47'),(283,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/mike-fullerton/',604,'agent_info','','','','','Hi Mike Fullerton, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:46:04'),(284,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/chelsea-trexler/',1898,'agent_info','','','','','Hi Chelsea Trexler, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:46:19'),(285,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/april-bird/',565,'agent_info','','','','','Hi April Bird, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:46:49'),(286,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ivan-henrickson/',1551,'agent_info','','','','','Hi Ivan Henrickson, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:46:58'),(287,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/rachel-monrad/',831,'agent_info','','','','','Hi Rachel Monrad, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:49:10'),(288,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/sarah-romesburg/',842,'agent_info','','','','','Hi Sarah Romesburg, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:49:27'),(289,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/dominique-walter/',1548,'agent_info','','','','','Hi Dominique Walter, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:49:42'),(290,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ashley-uttecht/',1637,'agent_info','','','','','Hi Ashley Uttecht, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:49:55'),(291,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/kathy-gurney/',2031,'agent_info','','','','','Hi Kathy Gurney, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:52:55'),(292,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/julie-arader/',1895,'agent_info','','','','','Hi Julie Arader, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:53:57'),(293,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/colleen-crane/',2305,'agent_info','','','','','Hi Colleen Crane, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:54:33'),(294,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/iiona-kenrick/',2077,'agent_info','','','','','Hi IIona Kenrick, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:54:54'),(295,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/michael-farlow/',1640,'agent_info','','','','','Hi Micheal Farlow, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:55:15'),(296,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/casey-paige-maness/',2079,'agent_info','','','','','Hi Casey Paige Maness, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:55:37'),(297,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/katherine-lawing/',1642,'agent_info','','','','','Hi Katherine Lawing, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:56:30'),(298,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/doreen-shaughnessy/',2029,'agent_info','','','','','Hi Doreen Shaughnessy, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:56:47'),(299,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/jenna-stoll/',2084,'agent_info','','','','','Hi Jenna Stoll, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:57:16'),(300,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/claire-sonnier/',2033,'agent_info','','','','','Hi Claire Sonnier, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:58:36'),(301,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/stephanie-knight/',2298,'agent_info','','','','','Hi Stephanie Knight, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:58:49'),(302,1,'','becca autumn','','','beccaautumn1@gmail.com','3026342356','','','','','','','','I\'m a buyer','','','https://lantern-realty.com/agent/ashley-ferlauto/',645,'agent_info','','','','','Hi Ashley Ferlauto, I saw your profile on Lantern Realty and Development and wanted to see if i can get some help','2022-06-26 06:59:00'),(303,1,'','Kaitlyn Goldsmith','','','ksammons42@gmail.com','7047875877','','','','','','','','Other','','','https://lantern-realty.com/agent/kim-sadler/',744,'agent_info','','','','','Hi Kim. We recently purchased a property put up by Lantern, 145 winding way in Salisbury. However, your lock box is still on the door. We plan on changing the locks soon, and I was wondering when you would be able to come and get the box?\r\n\r\nThanks,\r\nKatie','2022-07-01 01:19:10');
/*!40000 ALTER TABLE `lrwp_houzez_crm_leads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_houzez_crm_notes`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_notes` (
  `note_id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `belong_to` bigint(25) unsigned NOT NULL DEFAULT 0,
  `note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_notes`
--

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

--
-- Table structure for table `lrwp_houzez_crm_viewed_listings`
--

DROP TABLE IF EXISTS `lrwp_houzez_crm_viewed_listings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_crm_viewed_listings` (
  `id` bigint(25) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(25) DEFAULT NULL,
  `listing_id` bigint(25) unsigned NOT NULL DEFAULT 0,
  `time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_crm_viewed_listings`
--

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

--
-- Table structure for table `lrwp_houzez_currencies`
--

DROP TABLE IF EXISTS `lrwp_houzez_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_currencies` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `currency_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_code` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_symbol` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_position` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'before',
  `currency_decimal` int(10) NOT NULL,
  `currency_decimal_separator` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '.',
  `currency_thousand_separator` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ',',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_currencies`
--

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

--
-- Table structure for table `lrwp_houzez_fields_builder`
--

DROP TABLE IF EXISTS `lrwp_houzez_fields_builder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_fields_builder` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL,
  `options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fvalues` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_search` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `search_compare` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `placeholder` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_fields_builder`
--

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

--
-- Table structure for table `lrwp_houzez_search`
--

DROP TABLE IF EXISTS `lrwp_houzez_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_search` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `auther_id` mediumint(9) NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` longtext COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `url` longtext COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_search`
--

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

--
-- Table structure for table `lrwp_houzez_thread_messages`
--

DROP TABLE IF EXISTS `lrwp_houzez_thread_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_thread_messages` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `created_by` mediumint(9) NOT NULL,
  `thread_id` mediumint(9) NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `attachments` longtext COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_thread_messages`
--

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

--
-- Table structure for table `lrwp_houzez_threads`
--

DROP TABLE IF EXISTS `lrwp_houzez_threads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_houzez_threads` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `sender_id` mediumint(9) NOT NULL,
  `receiver_id` mediumint(9) NOT NULL,
  `property_id` mediumint(9) NOT NULL,
  `seen` mediumint(9) NOT NULL,
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_houzez_threads`
--

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

--
-- Table structure for table `lrwp_links`
--

DROP TABLE IF EXISTS `lrwp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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 `lrwp_links`
--

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

--
-- Table structure for table `lrwp_mec_dates`
--

DROP TABLE IF EXISTS `lrwp_mec_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_mec_dates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` int(10) NOT NULL,
  `dstart` date NOT NULL,
  `dend` date NOT NULL,
  `tstart` int(11) unsigned NOT NULL DEFAULT 0,
  `tend` int(11) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`),
  KEY `tstart` (`tstart`),
  KEY `tend` (`tend`)
) ENGINE=MyISAM AUTO_INCREMENT=712 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_mec_dates`
--

LOCK TABLES `lrwp_mec_dates` WRITE;
/*!40000 ALTER TABLE `lrwp_mec_dates` DISABLE KEYS */;
INSERT INTO `lrwp_mec_dates` VALUES (1,1131,'2020-10-23','2020-10-25',1603440000,1603648800),(2,1132,'2020-10-18','2020-10-18',1603008000,1603044000),(3,1132,'2020-10-21','2020-10-21',1603267200,1603303200),(4,1132,'2020-10-24','2020-10-24',1603526400,1603562400),(5,1132,'2020-10-27','2020-10-27',1603785600,1603821600),(6,1132,'2020-10-30','2020-10-30',1604044800,1604080800),(7,1132,'2020-11-02','2020-11-02',1604304000,1604340000),(8,1132,'2020-11-05','2020-11-05',1604563200,1604599200),(9,1132,'2020-11-08','2020-11-08',1604822400,1604858400),(10,1132,'2020-11-11','2020-11-11',1605081600,1605117600),(11,1132,'2020-11-14','2020-11-14',1605340800,1605376800),(12,1132,'2020-11-17','2020-11-17',1605600000,1605636000),(13,1132,'2020-11-20','2020-11-20',1605859200,1605895200),(14,1132,'2020-11-23','2020-11-23',1606118400,1606154400),(15,1132,'2020-11-26','2020-11-26',1606377600,1606413600),(16,1132,'2020-11-29','2020-11-29',1606636800,1606672800),(17,1132,'2020-12-02','2020-12-02',1606896000,1606932000),(18,1132,'2020-12-05','2020-12-05',1607155200,1607191200),(19,1132,'2020-12-08','2020-12-08',1607414400,1607450400),(20,1132,'2020-12-11','2020-12-11',1607673600,1607709600),(21,1132,'2020-12-14','2020-12-14',1607932800,1607968800),(22,1132,'2020-12-17','2020-12-17',1608192000,1608228000),(23,1132,'2020-12-20','2020-12-20',1608451200,1608487200),(24,1132,'2020-12-23','2020-12-23',1608710400,1608746400),(25,1132,'2020-12-26','2020-12-26',1608969600,1609005600),(26,1132,'2020-12-29','2020-12-29',1609228800,1609264800),(27,1132,'2021-01-01','2021-01-01',1609488000,1609524000),(28,1132,'2021-01-04','2021-01-04',1609747200,1609783200),(29,1132,'2021-01-07','2021-01-07',1610006400,1610042400),(30,1132,'2021-01-10','2021-01-10',1610265600,1610301600),(31,1132,'2021-01-13','2021-01-13',1610524800,1610560800),(32,1132,'2021-01-16','2021-01-16',1610784000,1610820000),(33,1132,'2021-01-19','2021-01-19',1611043200,1611079200),(34,1132,'2021-01-22','2021-01-22',1611302400,1611338400),(35,1132,'2021-01-25','2021-01-25',1611561600,1611597600),(36,1132,'2021-01-28','2021-01-28',1611820800,1611856800),(37,1132,'2021-01-31','2021-01-31',1612080000,1612116000),(38,1132,'2021-02-03','2021-02-03',1612339200,1612375200),(39,1132,'2021-02-06','2021-02-06',1612598400,1612634400),(40,1132,'2021-02-09','2021-02-09',1612857600,1612893600),(41,1132,'2021-02-12','2021-02-12',1613116800,1613152800),(42,1132,'2021-02-15','2021-02-15',1613376000,1613412000),(43,1132,'2021-02-18','2021-02-18',1613635200,1613671200),(44,1132,'2021-02-21','2021-02-21',1613894400,1613930400),(45,1132,'2021-02-24','2021-02-24',1614153600,1614189600),(46,1132,'2021-02-27','2021-02-27',1614412800,1614448800),(47,1132,'2021-03-02','2021-03-02',1614672000,1614708000),(48,1132,'2021-03-05','2021-03-05',1614931200,1614967200),(49,1132,'2021-03-08','2021-03-08',1615190400,1615226400),(50,1132,'2021-03-11','2021-03-11',1615449600,1615485600),(51,1132,'2021-03-14','2021-03-14',1615708800,1615744800),(52,1132,'2021-03-17','2021-03-17',1615968000,1616004000),(53,1132,'2021-03-20','2021-03-20',1616227200,1616263200),(54,1132,'2021-03-23','2021-03-23',1616486400,1616522400),(55,1132,'2021-03-26','2021-03-26',1616745600,1616781600),(56,1132,'2021-03-29','2021-03-29',1617004800,1617040800),(57,1132,'2021-04-01','2021-04-01',1617264000,1617300000),(58,1132,'2021-04-04','2021-04-04',1617523200,1617559200),(59,1132,'2021-04-07','2021-04-07',1617782400,1617818400),(60,1132,'2021-04-10','2021-04-10',1618041600,1618077600),(61,1132,'2021-04-13','2021-04-13',1618300800,1618336800),(62,1132,'2021-04-16','2021-04-16',1618560000,1618596000),(63,1132,'2021-04-19','2021-04-19',1618819200,1618855200),(64,1132,'2021-04-22','2021-04-22',1619078400,1619114400),(65,1132,'2021-04-25','2021-04-25',1619337600,1619373600),(66,1132,'2021-04-28','2021-04-28',1619596800,1619632800),(67,1132,'2021-05-01','2021-05-01',1619856000,1619892000),(68,1132,'2021-05-04','2021-05-04',1620115200,1620151200),(69,1132,'2021-05-07','2021-05-07',1620374400,1620410400),(70,1132,'2021-05-10','2021-05-10',1620633600,1620669600),(71,1132,'2021-05-13','2021-05-13',1620892800,1620928800),(72,1132,'2021-05-16','2021-05-16',1621152000,1621188000),(73,1132,'2021-05-19','2021-05-19',1621411200,1621447200),(74,1132,'2021-05-22','2021-05-22',1621670400,1621706400),(75,1132,'2021-05-25','2021-05-25',1621929600,1621965600),(76,1132,'2021-05-28','2021-05-28',1622188800,1622224800),(77,1132,'2021-05-31','2021-05-31',1622448000,1622484000),(78,1132,'2021-06-03','2021-06-03',1622707200,1622743200),(79,1132,'2021-06-06','2021-06-06',1622966400,1623002400),(80,1132,'2021-06-09','2021-06-09',1623225600,1623261600),(81,1132,'2021-06-12','2021-06-12',1623484800,1623520800),(82,1132,'2021-06-15','2021-06-15',1623744000,1623780000),(83,1132,'2021-06-18','2021-06-18',1624003200,1624039200),(84,1132,'2021-06-21','2021-06-21',1624262400,1624298400),(85,1132,'2021-06-24','2021-06-24',1624521600,1624557600),(86,1132,'2021-06-27','2021-06-27',1624780800,1624816800),(87,1132,'2021-06-30','2021-06-30',1625040000,1625076000),(88,1132,'2021-07-03','2021-07-03',1625299200,1625335200),(89,1132,'2021-07-06','2021-07-06',1625558400,1625594400),(90,1132,'2021-07-09','2021-07-09',1625817600,1625853600),(91,1132,'2021-07-12','2021-07-12',1626076800,1626112800),(92,1132,'2021-07-15','2021-07-15',1626336000,1626372000),(93,1132,'2021-07-18','2021-07-18',1626595200,1626631200),(94,1132,'2021-07-21','2021-07-21',1626854400,1626890400),(95,1132,'2021-07-24','2021-07-24',1627113600,1627149600),(96,1132,'2021-07-27','2021-07-27',1627372800,1627408800),(97,1132,'2021-07-30','2021-07-30',1627632000,1627668000),(98,1132,'2021-08-02','2021-08-02',1627891200,1627927200),(99,1132,'2021-08-05','2021-08-05',1628150400,1628186400),(100,1132,'2021-08-08','2021-08-08',1628409600,1628445600),(101,1132,'2021-08-11','2021-08-11',1628668800,1628704800),(102,1132,'2021-08-14','2021-08-14',1628928000,1628964000),(103,1132,'2021-08-17','2021-08-17',1629187200,1629223200),(104,1132,'2021-08-20','2021-08-20',1629446400,1629482400),(105,1132,'2021-08-23','2021-08-23',1629705600,1629741600),(106,1132,'2021-08-26','2021-08-26',1629964800,1630000800),(107,1132,'2021-08-29','2021-08-29',1630224000,1630260000),(108,1132,'2021-09-01','2021-09-01',1630483200,1630519200),(109,1132,'2021-09-04','2021-09-04',1630742400,1630778400),(110,1132,'2021-09-07','2021-09-07',1631001600,1631037600),(111,1132,'2021-09-10','2021-09-10',1631260800,1631296800),(112,1132,'2021-09-13','2021-09-13',1631520000,1631556000),(113,1132,'2021-09-16','2021-09-16',1631779200,1631815200),(114,1132,'2021-09-19','2021-09-19',1632038400,1632074400),(115,1132,'2021-09-22','2021-09-22',1632297600,1632333600),(116,1132,'2021-09-25','2021-09-25',1632556800,1632592800),(117,1132,'2021-09-28','2021-09-28',1632816000,1632852000),(118,1132,'2021-10-01','2021-10-01',1633075200,1633111200),(119,1132,'2021-10-04','2021-10-04',1633334400,1633370400),(120,1132,'2021-10-07','2021-10-07',1633593600,1633629600),(121,1132,'2021-10-10','2021-10-10',1633852800,1633888800),(122,1132,'2021-10-13','2021-10-13',1634112000,1634148000),(123,1132,'2021-10-16','2021-10-16',1634371200,1634407200),(124,1132,'2021-10-19','2021-10-19',1634630400,1634666400),(125,1132,'2021-10-22','2021-10-22',1634889600,1634925600),(126,1132,'2021-10-25','2021-10-25',1635148800,1635184800),(127,1132,'2021-10-28','2021-10-28',1635408000,1635444000),(128,1132,'2021-10-31','2021-10-31',1635667200,1635703200),(129,1132,'2021-11-03','2021-11-03',1635926400,1635962400),(130,1132,'2021-11-06','2021-11-06',1636185600,1636221600),(131,1132,'2021-11-09','2021-11-09',1636444800,1636480800),(132,1132,'2021-11-12','2021-11-12',1636704000,1636740000),(133,1132,'2021-11-15','2021-11-15',1636963200,1636999200),(134,1132,'2021-11-18','2021-11-18',1637222400,1637258400),(135,1132,'2021-11-21','2021-11-21',1637481600,1637517600),(136,1132,'2021-11-24','2021-11-24',1637740800,1637776800),(137,1132,'2021-11-27','2021-11-27',1638000000,1638036000),(138,1132,'2021-11-30','2021-11-30',1638259200,1638295200),(139,1132,'2021-12-03','2021-12-03',1638518400,1638554400),(140,1132,'2021-12-06','2021-12-06',1638777600,1638813600),(141,1132,'2021-12-09','2021-12-09',1639036800,1639072800),(142,1132,'2021-12-12','2021-12-12',1639296000,1639332000),(143,1132,'2021-12-15','2021-12-15',1639555200,1639591200),(144,1132,'2021-12-18','2021-12-18',1639814400,1639850400),(145,1132,'2021-12-21','2021-12-21',1640073600,1640109600),(146,1132,'2021-12-24','2021-12-24',1640332800,1640368800),(147,1132,'2021-12-27','2021-12-27',1640592000,1640628000),(148,1132,'2021-12-30','2021-12-30',1640851200,1640887200),(149,1132,'2022-01-02','2022-01-02',1641110400,1641146400),(150,1132,'2022-01-05','2022-01-05',1641369600,1641405600),(151,1132,'2022-01-08','2022-01-08',1641628800,1641664800),(152,1132,'2022-01-11','2022-01-11',1641888000,1641924000),(153,1132,'2022-01-14','2022-01-14',1642147200,1642183200),(154,1132,'2022-01-17','2022-01-17',1642406400,1642442400),(155,1132,'2022-01-20','2022-01-20',1642665600,1642701600),(156,1132,'2022-01-23','2022-01-23',1642924800,1642960800),(157,1132,'2022-01-26','2022-01-26',1643184000,1643220000),(158,1132,'2022-01-29','2022-01-29',1643443200,1643479200),(159,1132,'2022-02-01','2022-02-01',1643702400,1643738400),(160,1132,'2022-02-04','2022-02-04',1643961600,1643997600),(161,1132,'2022-02-07','2022-02-07',1644220800,1644256800),(162,1132,'2022-02-10','2022-02-10',1644480000,1644516000),(163,1132,'2022-02-13','2022-02-13',1644739200,1644775200),(164,1132,'2022-02-16','2022-02-16',1644998400,1645034400),(165,1132,'2022-02-19','2022-02-19',1645257600,1645293600),(166,1132,'2022-02-22','2022-02-22',1645516800,1645552800),(167,1132,'2022-02-25','2022-02-25',1645776000,1645812000),(168,1132,'2022-02-28','2022-02-28',1646035200,1646071200),(169,1132,'2022-03-03','2022-03-03',1646294400,1646330400),(170,1132,'2022-03-06','2022-03-06',1646553600,1646589600),(171,1132,'2022-03-09','2022-03-09',1646812800,1646848800),(172,1132,'2022-03-12','2022-03-12',1647072000,1647108000),(173,1132,'2022-03-15','2022-03-15',1647331200,1647367200),(174,1132,'2022-03-18','2022-03-18',1647590400,1647626400),(175,1132,'2022-03-21','2022-03-21',1647849600,1647885600),(176,1132,'2022-03-24','2022-03-24',1648108800,1648144800),(177,1132,'2022-03-27','2022-03-27',1648368000,1648404000),(178,1132,'2022-03-30','2022-03-30',1648627200,1648663200),(179,1132,'2022-04-02','2022-04-02',1648886400,1648922400),(180,1132,'2022-04-05','2022-04-05',1649145600,1649181600),(181,1132,'2022-04-08','2022-04-08',1649404800,1649440800),(182,1132,'2022-04-11','2022-04-11',1649664000,1649700000),(183,1132,'2022-04-14','2022-04-14',1649923200,1649959200),(184,1132,'2022-04-17','2022-04-17',1650182400,1650218400),(185,1132,'2022-04-20','2022-04-20',1650441600,1650477600),(186,1132,'2022-04-23','2022-04-23',1650700800,1650736800),(187,1132,'2022-04-26','2022-04-26',1650960000,1650996000),(188,1132,'2022-04-29','2022-04-29',1651219200,1651255200),(189,1132,'2022-05-02','2022-05-02',1651478400,1651514400),(190,1132,'2022-05-05','2022-05-05',1651737600,1651773600),(191,1132,'2022-05-08','2022-05-08',1651996800,1652032800),(192,1132,'2022-05-11','2022-05-11',1652256000,1652292000),(193,1132,'2022-05-14','2022-05-14',1652515200,1652551200),(194,1132,'2022-05-17','2022-05-17',1652774400,1652810400),(195,1132,'2022-05-20','2022-05-20',1653033600,1653069600),(196,1132,'2022-05-23','2022-05-23',1653292800,1653328800),(197,1132,'2022-05-26','2022-05-26',1653552000,1653588000),(198,1132,'2022-05-29','2022-05-29',1653811200,1653847200),(199,1132,'2022-06-01','2022-06-01',1654070400,1654106400),(200,1132,'2022-06-04','2022-06-04',1654329600,1654365600),(201,1132,'2022-06-07','2022-06-07',1654588800,1654624800),(202,1132,'2022-06-10','2022-06-10',1654848000,1654884000),(203,1132,'2022-06-13','2022-06-13',1655107200,1655143200),(204,1132,'2022-06-16','2022-06-16',1655366400,1655402400),(205,1132,'2022-06-19','2022-06-19',1655625600,1655661600),(206,1132,'2022-06-22','2022-06-22',1655884800,1655920800),(207,1132,'2022-06-25','2022-06-25',1656144000,1656180000),(208,1132,'2022-06-28','2022-06-28',1656403200,1656439200),(209,1132,'2022-07-01','2022-07-01',1656662400,1656698400),(210,1132,'2022-07-04','2022-07-04',1656921600,1656957600),(211,1132,'2022-07-07','2022-07-07',1657180800,1657216800),(212,1132,'2022-07-10','2022-07-10',1657440000,1657476000),(213,1132,'2022-07-13','2022-07-13',1657699200,1657735200),(214,1132,'2022-07-16','2022-07-16',1657958400,1657994400),(215,1132,'2022-07-19','2022-07-19',1658217600,1658253600),(216,1132,'2022-07-22','2022-07-22',1658476800,1658512800),(217,1132,'2022-07-25','2022-07-25',1658736000,1658772000),(218,1132,'2022-07-28','2022-07-28',1658995200,1659031200),(219,1132,'2022-07-31','2022-07-31',1659254400,1659290400),(220,1132,'2022-08-03','2022-08-03',1659513600,1659549600),(221,1132,'2022-08-06','2022-08-06',1659772800,1659808800),(222,1132,'2022-08-09','2022-08-09',1660032000,1660068000),(223,1132,'2022-08-12','2022-08-12',1660291200,1660327200),(224,1132,'2022-08-15','2022-08-15',1660550400,1660586400),(225,1132,'2022-08-18','2022-08-18',1660809600,1660845600),(226,1132,'2022-08-21','2022-08-21',1661068800,1661104800),(227,1132,'2022-08-24','2022-08-24',1661328000,1661364000),(228,1132,'2022-08-27','2022-08-27',1661587200,1661623200),(229,1132,'2022-08-30','2022-08-30',1661846400,1661882400),(230,1132,'2022-09-02','2022-09-02',1662105600,1662141600),(231,1132,'2022-09-05','2022-09-05',1662364800,1662400800),(232,1132,'2022-09-08','2022-09-08',1662624000,1662660000),(233,1132,'2022-09-11','2022-09-11',1662883200,1662919200),(234,1132,'2022-09-14','2022-09-14',1663142400,1663178400),(235,1132,'2022-09-17','2022-09-17',1663401600,1663437600),(236,1132,'2022-09-20','2022-09-20',1663660800,1663696800),(237,1132,'2022-09-23','2022-09-23',1663920000,1663956000),(238,1132,'2022-09-26','2022-09-26',1664179200,1664215200),(239,1132,'2022-09-29','2022-09-29',1664438400,1664474400),(240,1132,'2022-10-02','2022-10-02',1664697600,1664733600),(241,1132,'2022-10-05','2022-10-05',1664956800,1664992800),(242,1132,'2022-10-08','2022-10-08',1665216000,1665252000),(243,1132,'2022-10-11','2022-10-11',1665475200,1665511200),(244,1132,'2022-10-14','2022-10-14',1665734400,1665770400),(245,1132,'2022-10-17','2022-10-17',1665993600,1666029600),(246,1132,'2022-10-20','2022-10-20',1666252800,1666288800),(247,1132,'2022-10-23','2022-10-23',1666512000,1666548000),(248,1132,'2022-10-26','2022-10-26',1666771200,1666807200),(249,1132,'2022-10-29','2022-10-29',1667030400,1667066400),(250,1132,'2022-11-01','2022-11-01',1667289600,1667325600),(251,1132,'2022-11-04','2022-11-04',1667548800,1667584800),(252,1132,'2022-11-07','2022-11-07',1667808000,1667844000),(253,1132,'2022-11-10','2022-11-10',1668067200,1668103200),(254,1132,'2022-11-13','2022-11-13',1668326400,1668362400),(255,1132,'2022-11-16','2022-11-16',1668585600,1668621600),(256,1132,'2022-11-19','2022-11-19',1668844800,1668880800),(257,1132,'2022-11-22','2022-11-22',1669104000,1669140000),(258,1132,'2022-11-25','2022-11-25',1669363200,1669399200),(259,1132,'2022-11-28','2022-11-28',1669622400,1669658400),(260,1132,'2022-12-01','2022-12-01',1669881600,1669917600),(261,1132,'2022-12-04','2022-12-04',1670140800,1670176800),(262,1132,'2022-12-07','2022-12-07',1670400000,1670436000),(263,1132,'2022-12-10','2022-12-10',1670659200,1670695200),(264,1132,'2022-12-13','2022-12-13',1670918400,1670954400),(265,1132,'2022-12-16','2022-12-16',1671177600,1671213600),(266,1132,'2022-12-19','2022-12-19',1671436800,1671472800),(267,1132,'2022-12-22','2022-12-22',1671696000,1671732000),(268,1132,'2022-12-25','2022-12-25',1671955200,1671991200),(269,1132,'2022-12-28','2022-12-28',1672214400,1672250400),(270,1132,'2022-12-31','2022-12-31',1672473600,1672509600),(271,1132,'2023-01-03','2023-01-03',1672732800,1672768800),(272,1132,'2023-01-06','2023-01-06',1672992000,1673028000),(273,1132,'2023-01-09','2023-01-09',1673251200,1673287200),(274,1132,'2023-01-12','2023-01-12',1673510400,1673546400),(275,1132,'2023-01-15','2023-01-15',1673769600,1673805600),(276,1132,'2023-01-18','2023-01-18',1674028800,1674064800),(277,1132,'2023-01-21','2023-01-21',1674288000,1674324000),(278,1132,'2023-01-24','2023-01-24',1674547200,1674583200),(279,1132,'2023-01-27','2023-01-27',1674806400,1674842400),(280,1132,'2023-01-30','2023-01-30',1675065600,1675101600),(281,1132,'2023-02-02','2023-02-02',1675324800,1675360800),(282,1132,'2023-02-05','2023-02-05',1675584000,1675620000),(283,1132,'2023-02-08','2023-02-08',1675843200,1675879200),(284,1132,'2023-02-11','2023-02-11',1676102400,1676138400),(285,1132,'2023-02-14','2023-02-14',1676361600,1676397600),(286,1132,'2023-02-17','2023-02-17',1676620800,1676656800),(287,1132,'2023-02-20','2023-02-20',1676880000,1676916000),(288,1132,'2023-02-23','2023-02-23',1677139200,1677175200),(289,1132,'2023-02-26','2023-02-26',1677398400,1677434400),(290,1132,'2023-03-01','2023-03-01',1677657600,1677693600),(291,1132,'2023-03-04','2023-03-04',1677916800,1677952800),(292,1132,'2023-03-07','2023-03-07',1678176000,1678212000),(293,1132,'2023-03-10','2023-03-10',1678435200,1678471200),(294,1132,'2023-03-13','2023-03-13',1678694400,1678730400),(295,1132,'2023-03-16','2023-03-16',1678953600,1678989600),(296,1132,'2023-03-19','2023-03-19',1679212800,1679248800),(297,1132,'2023-03-22','2023-03-22',1679472000,1679508000),(298,1132,'2023-03-25','2023-03-25',1679731200,1679767200),(299,1132,'2023-03-28','2023-03-28',1679990400,1680026400),(300,1132,'2023-03-31','2023-03-31',1680249600,1680285600),(301,1132,'2023-04-03','2023-04-03',1680508800,1680544800),(302,1132,'2023-04-06','2023-04-06',1680768000,1680804000),(303,1132,'2023-04-09','2023-04-09',1681027200,1681063200),(304,1132,'2023-04-12','2023-04-12',1681286400,1681322400),(305,1132,'2023-04-15','2023-04-15',1681545600,1681581600),(306,1132,'2023-04-18','2023-04-18',1681804800,1681840800),(307,1132,'2023-04-21','2023-04-21',1682064000,1682100000),(308,1132,'2023-04-24','2023-04-24',1682323200,1682359200),(309,1132,'2023-04-27','2023-04-27',1682582400,1682618400),(310,1132,'2023-04-30','2023-04-30',1682841600,1682877600),(311,1132,'2023-05-03','2023-05-03',1683100800,1683136800),(312,1132,'2023-05-06','2023-05-06',1683360000,1683396000),(313,1132,'2023-05-09','2023-05-09',1683619200,1683655200),(314,1132,'2023-05-12','2023-05-12',1683878400,1683914400),(315,1132,'2023-05-15','2023-05-15',1684137600,1684173600),(316,1132,'2023-05-18','2023-05-18',1684396800,1684432800),(317,1132,'2023-05-21','2023-05-21',1684656000,1684692000),(318,1132,'2023-05-24','2023-05-24',1684915200,1684951200),(319,1132,'2023-05-27','2023-05-27',1685174400,1685210400),(320,1132,'2023-05-30','2023-05-30',1685433600,1685469600),(321,1132,'2023-06-02','2023-06-02',1685692800,1685728800),(322,1132,'2023-06-05','2023-06-05',1685952000,1685988000),(323,1132,'2023-06-08','2023-06-08',1686211200,1686247200),(324,1132,'2023-06-11','2023-06-11',1686470400,1686506400),(325,1132,'2023-06-14','2023-06-14',1686729600,1686765600),(326,1132,'2023-06-17','2023-06-17',1686988800,1687024800),(327,1132,'2023-06-20','2023-06-20',1687248000,1687284000),(328,1132,'2023-06-23','2023-06-23',1687507200,1687543200),(329,1132,'2023-06-26','2023-06-26',1687766400,1687802400),(330,1132,'2023-06-29','2023-06-29',1688025600,1688061600),(331,1132,'2023-07-02','2023-07-02',1688284800,1688320800),(332,1132,'2023-07-05','2023-07-05',1688544000,1688580000),(333,1132,'2023-07-08','2023-07-08',1688803200,1688839200),(334,1132,'2023-07-11','2023-07-11',1689062400,1689098400),(335,1132,'2023-07-14','2023-07-14',1689321600,1689357600),(336,1132,'2023-07-17','2023-07-17',1689580800,1689616800),(337,1132,'2023-07-20','2023-07-20',1689840000,1689876000),(338,1132,'2023-07-23','2023-07-23',1690099200,1690135200),(339,1132,'2023-07-26','2023-07-26',1690358400,1690394400),(340,1132,'2023-07-29','2023-07-29',1690617600,1690653600),(341,1132,'2023-08-01','2023-08-01',1690876800,1690912800),(342,1132,'2023-08-04','2023-08-04',1691136000,1691172000),(343,1132,'2023-08-07','2023-08-07',1691395200,1691431200),(344,1132,'2023-08-10','2023-08-10',1691654400,1691690400),(345,1132,'2023-08-13','2023-08-13',1691913600,1691949600),(346,1132,'2023-08-16','2023-08-16',1692172800,1692208800),(347,1132,'2023-08-19','2023-08-19',1692432000,1692468000),(348,1132,'2023-08-22','2023-08-22',1692691200,1692727200),(349,1132,'2023-08-25','2023-08-25',1692950400,1692986400),(350,1132,'2023-08-28','2023-08-28',1693209600,1693245600),(351,1132,'2023-08-31','2023-08-31',1693468800,1693504800),(352,1132,'2023-09-03','2023-09-03',1693728000,1693764000),(353,1132,'2023-09-06','2023-09-06',1693987200,1694023200),(354,1132,'2023-09-09','2023-09-09',1694246400,1694282400),(355,1132,'2023-09-12','2023-09-12',1694505600,1694541600),(356,1132,'2023-09-15','2023-09-15',1694764800,1694800800),(357,1132,'2023-09-18','2023-09-18',1695024000,1695060000),(358,1132,'2023-09-21','2023-09-21',1695283200,1695319200),(359,1132,'2023-09-24','2023-09-24',1695542400,1695578400),(360,1132,'2023-09-27','2023-09-27',1695801600,1695837600),(361,1132,'2023-09-30','2023-09-30',1696060800,1696096800),(362,1132,'2023-10-03','2023-10-03',1696320000,1696356000),(363,1132,'2023-10-06','2023-10-06',1696579200,1696615200),(364,1132,'2023-10-09','2023-10-09',1696838400,1696874400),(365,1132,'2023-10-12','2023-10-12',1697097600,1697133600),(366,1132,'2023-10-15','2023-10-15',1697356800,1697392800),(367,1132,'2023-10-18','2023-10-18',1697616000,1697652000),(368,1132,'2023-10-21','2023-10-21',1697875200,1697911200),(369,1132,'2023-10-24','2023-10-24',1698134400,1698170400),(370,1132,'2023-10-27','2023-10-27',1698393600,1698429600),(371,1132,'2023-10-30','2023-10-30',1698652800,1698688800),(372,1133,'2020-10-19','2020-10-19',1603094400,1603130400),(373,1133,'2020-10-26','2020-10-26',1603699200,1603735200),(374,1133,'2020-11-02','2020-11-02',1604304000,1604340000),(375,1133,'2020-11-09','2020-11-09',1604908800,1604944800),(376,1133,'2020-11-16','2020-11-16',1605513600,1605549600),(377,1133,'2020-11-23','2020-11-23',1606118400,1606154400),(378,1133,'2020-11-30','2020-11-30',1606723200,1606759200),(379,1133,'2020-12-07','2020-12-07',1607328000,1607364000),(380,1133,'2020-12-14','2020-12-14',1607932800,1607968800),(381,1133,'2020-12-21','2020-12-21',1608537600,1608573600),(382,1133,'2020-12-28','2020-12-28',1609142400,1609178400),(383,1133,'2021-01-04','2021-01-04',1609747200,1609783200),(384,1133,'2021-01-11','2021-01-11',1610352000,1610388000),(385,1133,'2021-01-18','2021-01-18',1610956800,1610992800),(386,1133,'2021-01-25','2021-01-25',1611561600,1611597600),(387,1133,'2021-02-01','2021-02-01',1612166400,1612202400),(388,1133,'2021-02-08','2021-02-08',1612771200,1612807200),(389,1133,'2021-02-15','2021-02-15',1613376000,1613412000),(390,1133,'2021-02-22','2021-02-22',1613980800,1614016800),(391,1133,'2021-03-01','2021-03-01',1614585600,1614621600),(392,1133,'2021-03-08','2021-03-08',1615190400,1615226400),(393,1133,'2021-03-15','2021-03-15',1615795200,1615831200),(394,1133,'2021-03-22','2021-03-22',1616400000,1616436000),(395,1133,'2021-03-29','2021-03-29',1617004800,1617040800),(396,1133,'2021-04-05','2021-04-05',1617609600,1617645600),(397,1133,'2021-04-12','2021-04-12',1618214400,1618250400),(398,1133,'2021-04-19','2021-04-19',1618819200,1618855200),(399,1133,'2021-04-26','2021-04-26',1619424000,1619460000),(400,1133,'2021-05-03','2021-05-03',1620028800,1620064800),(401,1133,'2021-05-10','2021-05-10',1620633600,1620669600),(402,1133,'2021-05-17','2021-05-17',1621238400,1621274400),(403,1133,'2021-05-24','2021-05-24',1621843200,1621879200),(404,1133,'2021-05-31','2021-05-31',1622448000,1622484000),(405,1133,'2021-06-07','2021-06-07',1623052800,1623088800),(406,1133,'2021-06-14','2021-06-14',1623657600,1623693600),(407,1133,'2021-06-21','2021-06-21',1624262400,1624298400),(408,1133,'2021-06-28','2021-06-28',1624867200,1624903200),(409,1133,'2021-07-05','2021-07-05',1625472000,1625508000),(410,1133,'2021-07-12','2021-07-12',1626076800,1626112800),(411,1133,'2021-07-19','2021-07-19',1626681600,1626717600),(412,1133,'2021-07-26','2021-07-26',1627286400,1627322400),(413,1133,'2021-08-02','2021-08-02',1627891200,1627927200),(414,1133,'2021-08-09','2021-08-09',1628496000,1628532000),(415,1133,'2021-08-16','2021-08-16',1629100800,1629136800),(416,1133,'2021-08-23','2021-08-23',1629705600,1629741600),(417,1133,'2021-08-30','2021-08-30',1630310400,1630346400),(418,1133,'2021-09-06','2021-09-06',1630915200,1630951200),(419,1133,'2021-09-13','2021-09-13',1631520000,1631556000),(420,1133,'2021-09-20','2021-09-20',1632124800,1632160800),(421,1133,'2021-09-27','2021-09-27',1632729600,1632765600),(422,1133,'2021-10-04','2021-10-04',1633334400,1633370400),(423,1133,'2021-10-11','2021-10-11',1633939200,1633975200),(424,1133,'2021-10-18','2021-10-18',1634544000,1634580000),(425,1133,'2021-10-25','2021-10-25',1635148800,1635184800),(426,1133,'2021-11-01','2021-11-01',1635753600,1635789600),(427,1133,'2021-11-08','2021-11-08',1636358400,1636394400),(428,1133,'2021-11-15','2021-11-15',1636963200,1636999200),(429,1133,'2021-11-22','2021-11-22',1637568000,1637604000),(430,1133,'2021-11-29','2021-11-29',1638172800,1638208800),(431,1133,'2021-12-06','2021-12-06',1638777600,1638813600),(432,1133,'2021-12-13','2021-12-13',1639382400,1639418400),(433,1133,'2021-12-20','2021-12-20',1639987200,1640023200),(434,1133,'2021-12-27','2021-12-27',1640592000,1640628000),(435,1133,'2022-01-03','2022-01-03',1641196800,1641232800),(436,1133,'2022-01-10','2022-01-10',1641801600,1641837600),(437,1133,'2022-01-17','2022-01-17',1642406400,1642442400),(438,1133,'2022-01-24','2022-01-24',1643011200,1643047200),(439,1133,'2022-01-31','2022-01-31',1643616000,1643652000),(440,1133,'2022-02-07','2022-02-07',1644220800,1644256800),(441,1133,'2022-02-14','2022-02-14',1644825600,1644861600),(442,1133,'2022-02-21','2022-02-21',1645430400,1645466400),(443,1133,'2022-02-28','2022-02-28',1646035200,1646071200),(444,1133,'2022-03-07','2022-03-07',1646640000,1646676000),(445,1133,'2022-03-14','2022-03-14',1647244800,1647280800),(446,1133,'2022-03-21','2022-03-21',1647849600,1647885600),(447,1133,'2022-03-28','2022-03-28',1648454400,1648490400),(448,1133,'2022-04-04','2022-04-04',1649059200,1649095200),(449,1133,'2022-04-11','2022-04-11',1649664000,1649700000),(450,1133,'2022-04-18','2022-04-18',1650268800,1650304800),(451,1133,'2022-04-25','2022-04-25',1650873600,1650909600),(452,1133,'2022-05-02','2022-05-02',1651478400,1651514400),(453,1133,'2022-05-09','2022-05-09',1652083200,1652119200),(454,1133,'2022-05-16','2022-05-16',1652688000,1652724000),(455,1133,'2022-05-23','2022-05-23',1653292800,1653328800),(456,1133,'2022-05-30','2022-05-30',1653897600,1653933600),(457,1133,'2022-06-06','2022-06-06',1654502400,1654538400),(458,1133,'2022-06-13','2022-06-13',1655107200,1655143200),(459,1133,'2022-06-20','2022-06-20',1655712000,1655748000),(460,1133,'2022-06-27','2022-06-27',1656316800,1656352800),(461,1133,'2022-07-04','2022-07-04',1656921600,1656957600),(462,1133,'2022-07-11','2022-07-11',1657526400,1657562400),(463,1133,'2022-07-18','2022-07-18',1658131200,1658167200),(464,1133,'2022-07-25','2022-07-25',1658736000,1658772000),(465,1133,'2022-08-01','2022-08-01',1659340800,1659376800),(466,1133,'2022-08-08','2022-08-08',1659945600,1659981600),(467,1133,'2022-08-15','2022-08-15',1660550400,1660586400),(468,1133,'2022-08-22','2022-08-22',1661155200,1661191200),(469,1133,'2022-08-29','2022-08-29',1661760000,1661796000),(470,1133,'2022-09-05','2022-09-05',1662364800,1662400800),(471,1133,'2022-09-12','2022-09-12',1662969600,1663005600),(472,1134,'2020-10-27','2020-10-27',1603785600,1603821600),(473,1134,'2020-11-27','2020-11-27',1606464000,1606500000),(474,1134,'2020-12-27','2020-12-27',1609056000,1609092000),(475,1134,'2021-01-27','2021-01-27',1611734400,1611770400),(476,1134,'2021-02-27','2021-02-27',1614412800,1614448800),(477,1134,'2021-03-27','2021-03-27',1616832000,1616868000),(478,1134,'2021-04-27','2021-04-27',1619510400,1619546400),(479,1134,'2021-05-27','2021-05-27',1622102400,1622138400),(480,1134,'2021-06-27','2021-06-27',1624780800,1624816800),(481,1134,'2021-07-27','2021-07-27',1627372800,1627408800),(482,1134,'2021-08-27','2021-08-27',1630051200,1630087200),(483,1134,'2021-09-27','2021-09-27',1632729600,1632765600),(484,1134,'2021-10-27','2021-10-27',1635321600,1635357600),(485,1134,'2021-11-27','2021-11-27',1638000000,1638036000),(486,1134,'2021-12-27','2021-12-27',1640592000,1640628000),(487,1134,'2022-01-27','2022-01-27',1643270400,1643306400),(488,1134,'2022-02-27','2022-02-27',1645948800,1645984800),(489,1134,'2022-03-27','2022-03-27',1648368000,1648404000),(490,1134,'2022-04-27','2022-04-27',1651046400,1651082400),(491,1134,'2022-05-27','2022-05-27',1653638400,1653674400),(492,1134,'2022-06-27','2022-06-27',1656316800,1656352800),(493,1134,'2022-07-27','2022-07-27',1658908800,1658944800),(494,1134,'2022-08-27','2022-08-27',1661587200,1661623200),(495,1134,'2022-09-27','2022-09-27',1664265600,1664301600),(496,1134,'2022-10-27','2022-10-27',1666857600,1666893600),(497,1134,'2022-11-27','2022-11-27',1669536000,1669572000),(498,1134,'2022-12-27','2022-12-27',1672128000,1672164000),(499,1134,'2023-01-27','2023-01-27',1674806400,1674842400),(500,1134,'2023-02-27','2023-02-27',1677484800,1677520800),(501,1134,'2023-03-27','2023-03-27',1679904000,1679940000),(502,1134,'2023-04-27','2023-04-27',1682582400,1682618400),(503,1134,'2023-05-27','2023-05-27',1685174400,1685210400),(504,1134,'2023-06-27','2023-06-27',1687852800,1687888800),(505,1134,'2023-07-27','2023-07-27',1690444800,1690480800),(506,1134,'2023-08-27','2023-08-27',1693123200,1693159200),(507,1134,'2023-09-27','2023-09-27',1695801600,1695837600),(508,1134,'2023-10-27','2023-10-27',1698393600,1698429600),(509,1134,'2023-11-27','2023-11-27',1701072000,1701108000),(510,1134,'2023-12-27','2023-12-27',1703664000,1703700000),(511,1134,'2024-01-27','2024-01-27',1706342400,1706378400),(512,1134,'2024-02-27','2024-02-27',1709020800,1709056800),(513,1134,'2024-03-27','2024-03-27',1711526400,1711562400),(514,1134,'2024-04-27','2024-04-27',1714204800,1714240800),(515,1134,'2024-05-27','2024-05-27',1716796800,1716832800),(516,1134,'2024-06-27','2024-06-27',1719475200,1719511200),(517,1134,'2024-07-27','2024-07-27',1722067200,1722103200),(518,1134,'2024-08-27','2024-08-27',1724745600,1724781600),(519,1134,'2024-09-27','2024-09-27',1727424000,1727460000),(520,1134,'2024-10-27','2024-10-27',1730016000,1730052000),(521,1134,'2024-11-27','2024-11-27',1732694400,1732730400),(522,1135,'2020-08-20','2020-08-21',1597910400,1598032800),(523,1135,'2021-08-20','2021-08-21',1629446400,1629568800),(524,1135,'2022-08-20','2022-08-21',1660982400,1661104800),(525,1135,'2023-08-20','2023-08-21',1692518400,1692640800),(526,1135,'2024-08-20','2024-08-21',1724140800,1724263200),(527,1135,'2025-08-20','2025-08-21',1755676800,1755799200),(528,1135,'2026-08-20','2026-08-21',1787212800,1787335200),(529,1135,'2027-08-20','2027-08-21',1818748800,1818871200),(530,1135,'2028-08-20','2028-08-21',1850371200,1850493600),(531,1135,'2029-08-20','2029-08-21',1881907200,1882029600),(532,1135,'2030-08-20','2030-08-21',1913443200,1913565600),(533,1135,'2031-08-20','2031-08-21',1944979200,1945101600),(534,1135,'2032-08-20','2032-08-21',1976601600,1976724000),(535,1135,'2033-08-20','2033-08-21',2008137600,2008260000),(536,1135,'2034-08-20','2034-08-21',2039673600,2039796000),(537,1135,'2035-08-20','2035-08-21',2071209600,2071332000),(538,1135,'2036-08-20','2036-08-21',2102832000,2102954400),(539,1135,'2037-08-20','2037-08-21',2134368000,2134490400),(540,1135,'2038-08-20','2038-08-21',2165904000,2166026400),(541,1135,'2039-08-20','2039-08-21',2197440000,2197562400),(542,1135,'2040-08-20','2040-08-21',2229062400,2229184800),(543,1135,'2041-08-20','2041-08-21',2260598400,2260720800),(544,1135,'2042-08-20','2042-08-21',2292134400,2292256800),(545,1135,'2043-08-20','2043-08-21',2323670400,2323792800),(546,1135,'2044-08-20','2044-08-21',2355292800,2355415200),(547,1134,'2024-12-27','2024-12-27',1735286400,1735322400),(548,1134,'2025-01-27','2025-01-27',1737964800,1738000800),(549,1134,'2025-02-27','2025-02-27',1740643200,1740679200),(550,1134,'2025-03-27','2025-03-27',1743062400,1743098400),(551,1134,'2025-04-27','2025-04-27',1745740800,1745776800),(552,1134,'2025-05-27','2025-05-27',1748332800,1748368800),(553,1134,'2025-06-27','2025-06-27',1751011200,1751047200),(554,1134,'2025-07-27','2025-07-27',1753603200,1753639200),(555,1134,'2025-08-27','2025-08-27',1756281600,1756317600),(556,1134,'2025-09-27','2025-09-27',1758960000,1758996000),(557,1134,'2025-10-27','2025-10-27',1761552000,1761588000),(558,1134,'2025-11-27','2025-11-27',1764230400,1764266400),(559,1134,'2025-12-27','2025-12-27',1766822400,1766858400),(560,1134,'2026-01-27','2026-01-27',1769500800,1769536800),(561,1134,'2026-02-27','2026-02-27',1772179200,1772215200),(562,1134,'2026-03-27','2026-03-27',1774598400,1774634400),(563,1134,'2026-04-27','2026-04-27',1777276800,1777312800),(564,1134,'2026-05-27','2026-05-27',1779868800,1779904800),(565,1134,'2026-06-27','2026-06-27',1782547200,1782583200),(566,1134,'2026-07-27','2026-07-27',1785139200,1785175200),(567,1134,'2026-08-27','2026-08-27',1787817600,1787853600),(568,1134,'2026-09-27','2026-09-27',1790496000,1790532000),(569,1134,'2026-10-27','2026-10-27',1793088000,1793124000),(570,1134,'2026-11-27','2026-11-27',1795766400,1795802400),(571,1134,'2026-12-27','2026-12-27',1798358400,1798394400),(572,1134,'2027-01-27','2027-01-27',1801036800,1801072800),(573,1134,'2027-02-27','2027-02-27',1803715200,1803751200),(574,1134,'2027-03-27','2027-03-27',1806134400,1806170400),(575,1134,'2027-04-27','2027-04-27',1808812800,1808848800),(576,1134,'2027-05-27','2027-05-27',1811404800,1811440800),(577,1134,'2027-06-27','2027-06-27',1814083200,1814119200),(578,1134,'2027-07-27','2027-07-27',1816675200,1816711200),(579,1134,'2027-08-27','2027-08-27',1819353600,1819389600),(580,1134,'2027-09-27','2027-09-27',1822032000,1822068000),(581,1134,'2027-10-27','2027-10-27',1824624000,1824660000),(582,1134,'2027-11-27','2027-11-27',1827302400,1827338400),(583,1134,'2027-12-27','2027-12-27',1829894400,1829930400),(584,1134,'2028-01-27','2028-01-27',1832572800,1832608800),(585,1134,'2028-02-27','2028-02-27',1835251200,1835287200),(586,1134,'2028-03-27','2028-03-27',1837756800,1837792800),(587,1134,'2028-04-27','2028-04-27',1840435200,1840471200),(588,1134,'2028-05-27','2028-05-27',1843027200,1843063200),(589,1134,'2028-06-27','2028-06-27',1845705600,1845741600),(590,1134,'2028-07-27','2028-07-27',1848297600,1848333600),(591,1134,'2028-08-27','2028-08-27',1850976000,1851012000),(592,1134,'2028-09-27','2028-09-27',1853654400,1853690400),(593,1134,'2028-10-27','2028-10-27',1856246400,1856282400),(594,1134,'2028-11-27','2028-11-27',1858924800,1858960800),(595,1134,'2028-12-27','2028-12-27',1861516800,1861552800),(596,1133,'2022-09-19','2022-09-19',1663574400,1663610400),(597,1133,'2022-09-26','2022-09-26',1664179200,1664215200),(598,1133,'2022-10-03','2022-10-03',1664784000,1664820000),(599,1133,'2022-10-10','2022-10-10',1665388800,1665424800),(600,1133,'2022-10-17','2022-10-17',1665993600,1666029600),(601,1133,'2022-10-24','2022-10-24',1666598400,1666634400),(602,1133,'2022-10-31','2022-10-31',1667203200,1667239200),(603,1133,'2022-11-07','2022-11-07',1667808000,1667844000),(604,1133,'2022-11-14','2022-11-14',1668412800,1668448800),(605,1133,'2022-11-21','2022-11-21',1669017600,1669053600),(606,1133,'2022-11-28','2022-11-28',1669622400,1669658400),(607,1133,'2022-12-05','2022-12-05',1670227200,1670263200),(608,1133,'2022-12-12','2022-12-12',1670832000,1670868000),(609,1133,'2022-12-19','2022-12-19',1671436800,1671472800),(610,1133,'2022-12-26','2022-12-26',1672041600,1672077600),(611,1133,'2023-01-02','2023-01-02',1672646400,1672682400),(612,1133,'2023-01-09','2023-01-09',1673251200,1673287200),(613,1133,'2023-01-16','2023-01-16',1673856000,1673892000),(614,1133,'2023-01-23','2023-01-23',1674460800,1674496800),(615,1133,'2023-01-30','2023-01-30',1675065600,1675101600),(616,1133,'2023-02-06','2023-02-06',1675670400,1675706400),(617,1133,'2023-02-13','2023-02-13',1676275200,1676311200),(618,1133,'2023-02-20','2023-02-20',1676880000,1676916000),(619,1133,'2023-02-27','2023-02-27',1677484800,1677520800),(620,1133,'2023-03-06','2023-03-06',1678089600,1678125600),(621,1133,'2023-03-13','2023-03-13',1678694400,1678730400),(622,1133,'2023-03-20','2023-03-20',1679299200,1679335200),(623,1133,'2023-03-27','2023-03-27',1679904000,1679940000),(624,1133,'2023-04-03','2023-04-03',1680508800,1680544800),(625,1133,'2023-04-10','2023-04-10',1681113600,1681149600),(626,1133,'2023-04-17','2023-04-17',1681718400,1681754400),(627,1133,'2023-04-24','2023-04-24',1682323200,1682359200),(628,1133,'2023-05-01','2023-05-01',1682928000,1682964000),(629,1133,'2023-05-08','2023-05-08',1683532800,1683568800),(630,1133,'2023-05-15','2023-05-15',1684137600,1684173600),(631,1133,'2023-05-22','2023-05-22',1684742400,1684778400),(632,1133,'2023-05-29','2023-05-29',1685347200,1685383200),(633,1133,'2023-06-05','2023-06-05',1685952000,1685988000),(634,1133,'2023-06-12','2023-06-12',1686556800,1686592800),(635,1133,'2023-06-19','2023-06-19',1687161600,1687197600),(636,1133,'2023-06-26','2023-06-26',1687766400,1687802400),(637,1133,'2023-07-03','2023-07-03',1688371200,1688407200),(638,1133,'2023-07-10','2023-07-10',1688976000,1689012000),(639,1133,'2023-07-17','2023-07-17',1689580800,1689616800),(640,1133,'2023-07-24','2023-07-24',1690185600,1690221600),(641,1133,'2023-07-31','2023-07-31',1690790400,1690826400),(642,1133,'2023-08-07','2023-08-07',1691395200,1691431200),(643,1133,'2023-08-14','2023-08-14',1692000000,1692036000),(644,1133,'2023-08-21','2023-08-21',1692604800,1692640800),(645,1133,'2023-08-28','2023-08-28',1693209600,1693245600),(646,1132,'2023-11-02','2023-11-02',1698912000,1698948000),(647,1132,'2023-11-05','2023-11-05',1699171200,1699207200),(648,1132,'2023-11-08','2023-11-08',1699430400,1699466400),(649,1132,'2023-11-11','2023-11-11',1699689600,1699725600),(650,1132,'2023-11-14','2023-11-14',1699948800,1699984800),(651,1132,'2023-11-17','2023-11-17',1700208000,1700244000),(652,1132,'2023-11-20','2023-11-20',1700467200,1700503200),(653,1132,'2023-11-23','2023-11-23',1700726400,1700762400),(654,1132,'2023-11-26','2023-11-26',1700985600,1701021600),(655,1132,'2023-11-29','2023-11-29',1701244800,1701280800),(656,1132,'2023-12-02','2023-12-02',1701504000,1701540000),(657,1132,'2023-12-05','2023-12-05',1701763200,1701799200),(658,1132,'2023-12-08','2023-12-08',1702022400,1702058400),(659,1132,'2023-12-11','2023-12-11',1702281600,1702317600),(660,1132,'2023-12-14','2023-12-14',1702540800,1702576800),(661,1132,'2023-12-17','2023-12-17',1702800000,1702836000),(662,1132,'2023-12-20','2023-12-20',1703059200,1703095200),(663,1132,'2023-12-23','2023-12-23',1703318400,1703354400),(664,1132,'2023-12-26','2023-12-26',1703577600,1703613600),(665,1132,'2023-12-29','2023-12-29',1703836800,1703872800),(666,1132,'2024-01-01','2024-01-01',1704096000,1704132000),(667,1132,'2024-01-04','2024-01-04',1704355200,1704391200),(668,1132,'2024-01-07','2024-01-07',1704614400,1704650400),(669,1132,'2024-01-10','2024-01-10',1704873600,1704909600),(670,1132,'2024-01-13','2024-01-13',1705132800,1705168800),(671,1132,'2024-01-16','2024-01-16',1705392000,1705428000),(672,1132,'2024-01-19','2024-01-19',1705651200,1705687200),(673,1132,'2024-01-22','2024-01-22',1705910400,1705946400),(674,1132,'2024-01-25','2024-01-25',1706169600,1706205600),(675,1132,'2024-01-28','2024-01-28',1706428800,1706464800),(676,1132,'2024-01-31','2024-01-31',1706688000,1706724000),(677,1132,'2024-02-03','2024-02-03',1706947200,1706983200),(678,1132,'2024-02-06','2024-02-06',1707206400,1707242400),(679,1132,'2024-02-09','2024-02-09',1707465600,1707501600),(680,1132,'2024-02-12','2024-02-12',1707724800,1707760800),(681,1132,'2024-02-15','2024-02-15',1707984000,1708020000),(682,1132,'2024-02-18','2024-02-18',1708243200,1708279200),(683,1132,'2024-02-21','2024-02-21',1708502400,1708538400),(684,1132,'2024-02-24','2024-02-24',1708761600,1708797600),(685,1132,'2024-02-27','2024-02-27',1709020800,1709056800),(686,1132,'2024-03-01','2024-03-01',1709280000,1709316000),(687,1132,'2024-03-04','2024-03-04',1709539200,1709575200),(688,1132,'2024-03-07','2024-03-07',1709798400,1709834400),(689,1132,'2024-03-10','2024-03-10',1710057600,1710093600),(690,1132,'2024-03-13','2024-03-13',1710316800,1710352800),(691,1132,'2024-03-16','2024-03-16',1710576000,1710612000),(692,1132,'2024-03-19','2024-03-19',1710835200,1710871200),(693,1132,'2024-03-22','2024-03-22',1711094400,1711130400),(694,1132,'2024-03-25','2024-03-25',1711353600,1711389600),(695,1132,'2024-03-28','2024-03-28',1711612800,1711648800),(696,1151,'2020-10-05','2020-10-05',1601906400,1601911800),(697,1152,'2020-10-07','2020-10-07',1602082800,1602086400),(698,1153,'2020-09-22','2020-09-22',1600783200,1600788600),(699,1154,'2020-11-05','2020-11-05',1604588400,1604593800),(700,1155,'2020-11-10','2020-11-10',1605020400,1605025800),(701,1156,'2020-10-13','2020-10-13',1602597600,1602604800),(702,1157,'2020-11-17','2020-11-17',1605625200,1605632400),(703,1158,'2020-10-01','2020-10-01',1601560800,1601566200),(704,1159,'2020-11-19','2020-11-19',1605798000,1605803400),(705,1160,'2020-10-27','2020-10-27',1603807200,1603814400),(706,1161,'2020-11-05','2020-11-05',1604611800,1604617200),(707,1162,'2020-10-20','2020-10-20',1603202400,1603209600),(708,1163,'2020-11-12','2020-11-12',1605193200,1605198600),(709,1164,'2020-09-29','2020-09-29',1601388000,1601395200),(710,1165,'2020-10-29','2020-10-29',1603980000,1603985400),(711,1166,'2020-10-13','2020-10-13',1602621000,1602626400);
/*!40000 ALTER TABLE `lrwp_mec_dates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_mec_events`
--

DROP TABLE IF EXISTS `lrwp_mec_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_mec_events` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `post_id` int(10) NOT NULL,
  `start` date NOT NULL,
  `end` date NOT NULL,
  `repeat` tinyint(4) NOT NULL DEFAULT 0,
  `rinterval` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `year` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `month` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `day` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `week` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `weekday` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `weekdays` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `days` text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `not_in_days` text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `time_start` int(10) NOT NULL DEFAULT 0,
  `time_end` int(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ID` (`id`),
  UNIQUE KEY `post_id` (`post_id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_mec_events`
--

LOCK TABLES `lrwp_mec_events` WRITE;
/*!40000 ALTER TABLE `lrwp_mec_events` DISABLE KEYS */;
INSERT INTO `lrwp_mec_events` VALUES (1,1131,'2020-10-23','2020-10-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',28800,64800),(2,1132,'2020-10-18','0000-00-00',1,'3',NULL,NULL,NULL,NULL,NULL,NULL,'','',28800,64800),(3,1133,'2020-10-19','0000-00-00',1,'7',NULL,NULL,NULL,NULL,NULL,NULL,'','',28800,64800),(4,1134,'2020-10-27','0000-00-00',1,NULL,'*','*',',27,','*','*',NULL,'','',28800,64800),(5,1135,'2020-08-20','0000-00-00',1,NULL,'*',',08,',',20,21,','*','*',NULL,'','',28800,64800),(6,1151,'2020-10-05','2020-10-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,55800),(7,1152,'2020-10-07','2020-10-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,57600),(8,1153,'2020-09-22','2020-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,55800),(9,1154,'2020-11-05','2020-11-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,59400),(10,1155,'2020-11-10','2020-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,59400),(11,1156,'2020-10-13','2020-10-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,57600),(12,1157,'2020-11-17','2020-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,61200),(13,1158,'2020-10-01','2020-10-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,55800),(14,1159,'2020-11-19','2020-11-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,59400),(15,1160,'2020-10-27','2020-10-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,57600),(16,1161,'2020-11-05','2020-11-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',77400,82800),(17,1162,'2020-10-20','2020-10-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,57600),(18,1163,'2020-11-12','2020-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',54000,59400),(19,1164,'2020-09-29','2020-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,57600),(20,1165,'2020-10-29','2020-10-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',50400,55800),(21,1166,'2020-10-13','2020-10-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','',73800,79200);
/*!40000 ALTER TABLE `lrwp_mec_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_mec_occurrences`
--

DROP TABLE IF EXISTS `lrwp_mec_occurrences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_mec_occurrences` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` int(10) unsigned NOT NULL,
  `occurrence` int(10) unsigned NOT NULL,
  `params` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`),
  KEY `occurrence` (`occurrence`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_mec_occurrences`
--

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

--
-- Table structure for table `lrwp_mec_users`
--

DROP TABLE IF EXISTS `lrwp_mec_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_mec_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL,
  `reg` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=1000000 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_mec_users`
--

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

--
-- Table structure for table `lrwp_ninja_table_items`
--

DROP TABLE IF EXISTS `lrwp_ninja_table_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_ninja_table_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `position` int(11) DEFAULT NULL,
  `table_id` int(11) NOT NULL,
  `owner_id` int(11) DEFAULT NULL,
  `attribute` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_ninja_table_items`
--

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

--
-- Table structure for table `lrwp_options`
--

DROP TABLE IF EXISTS `lrwp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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=1913087 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_options`
--

LOCK TABLES `lrwp_options` WRITE;
/*!40000 ALTER TABLE `lrwp_options` DISABLE KEYS */;
INSERT INTO `lrwp_options` VALUES (1,'siteurl','https://lantern-realty.com','yes'),(2,'home','https://lantern-realty.com','yes'),(3,'blogname','Lantern Realty and Development','yes'),(4,'blogdescription','Let Us Guide You Home','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','ckeziah127@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.lantern-realty.com','yes'),(15,'mailserver_login','announcements@lantern-realty.com','yes'),(16,'mailserver_pass','2020LanternRD!','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','16','yes'),(19,'default_comment_status','','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','1','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:412:{s:40:\"^homes-for-sale-search-advanced/([^/]+)$\";s:85:\"index.php?pagename=non_existent_page&ihf-type=idx-advanced-search&boardId=$matches[1]\";s:32:\"^homes-for-sale-search-advanced$\";s:65:\"index.php?pagename=non_existent_page&ihf-type=idx-advanced-search\";s:13:\"^office-list$\";s:61:\"index.php?pagename=non_existent_page&ihf-type=idx-office-list\";s:24:\"^mls-portal-office-list$\";s:72:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office-list\";s:41:\"^mls-portal-office-list-name-starts-with$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-board-list-name-starts-with\";s:31:\"^office-detail/([^/]+)/([^/]+)$\";s:107:\"index.php?pagename=non_existent_page&ihf-type=idx-office-detail&officeName=$matches[1]&officeId=$matches[2]\";s:42:\"^mls-portal-office-detail/([^/]+)/([^/]+)$\";s:121:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office&boardOfficeName=$matches[1]&boardOfficeId=$matches[2]\";s:12:\"^agent-list$\";s:60:\"index.php?pagename=non_existent_page&ihf-type=idx-agent-list\";s:23:\"^mls-portal-agent-list$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-list\";s:45:\"^mls-portal-agent-list-last-name-starts-with$\";s:93:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-list-last-name-starts-with\";s:26:\"^mls-portal-office-search$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office-search\";s:25:\"^mls-portal-agent-search$\";s:73:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-search\";s:30:\"^agent-detail/([^/]+)/([^/]+)$\";s:104:\"index.php?pagename=non_existent_page&ihf-type=idx-agent-detail&agentName=$matches[1]&agentId=$matches[2]\";s:34:\"^mls-portal-agent/([^/]+)/([^/]+)$\";s:120:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent&boardMemberName=$matches[1]&boardMemberId=$matches[2]\";s:14:\"^contact-form$\";s:62:\"index.php?pagename=non_existent_page&ihf-type=idx-contact-form\";s:16:\"^valuation-form$\";s:64:\"index.php?pagename=non_existent_page&ihf-type=idx-valuation-form\";s:21:\"^mortgage-calculator$\";s:69:\"index.php?pagename=non_existent_page&ihf-type=idx-mortgage-calculator\";s:18:\"^open-home-search$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-open-home-search-form\";s:23:\"^sold-featured-listing$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-sold-featured-listing\";s:26:\"^pending-featured-listing$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-pending-featured-listing\";s:22:\"^supplemental-listing$\";s:70:\"index.php?pagename=non_existent_page&ihf-type=idx-supplemental-listing\";s:23:\"^homes-for-sale-search$\";s:56:\"index.php?pagename=non_existent_page&ihf-type=idx-search\";s:27:\"^homes-for-sale-map-search$\";s:60:\"index.php?pagename=non_existent_page&ihf-type=idx-map-search\";s:47:\"^property-organizer-delete-saved-search-submit$\";s:95:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-delete-saved-search-submit\";s:56:\"^property-organizer-delete-saved-listing-submit/([^/]+)$\";s:116:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-delete-saved-listing&savedListingId=$matches[1]\";s:22:\"^email-alerts/([^/]+)$\";s:106:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search&boardId=$matches[1]\";s:14:\"^email-alerts$\";s:86:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search\";s:45:\"^property-organizer-edit-saved-search-submit$\";s:93:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search-submit\";s:28:\"^email-updates-confirmation$\";s:90:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-email-updates-success\";s:25:\"^property-organizer-help$\";s:73:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-help\";s:36:\"^property-organizer-edit-subscriber$\";s:84:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-subscriber\";s:26:\"^property-organizer-login$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-login\";s:27:\"^property-organizer-logout$\";s:75:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-logout\";s:46:\"^property-organizer-view-saved-search/([^/]+)$\";s:114:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-search&searchProfileId=$matches[1]\";s:43:\"^property-organizer-view-saved-search-list$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-searches\";s:35:\"^property-organizer-saved-listings$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-listings\";s:46:\"^property-organizer-resend-confirmation-email$\";s:94:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-resend-confirmation-email\";s:29:\"^property-organizer-activate$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-activate-subscriber\";s:31:\"^property-organizer-send-login$\";s:79:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-send-login\";s:32:\"^listing-report/([^/]+)/([^/]+)$\";s:113:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:34:\"^open-home-report/([^/]+)/([^/]+)$\";s:129:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheet-open-home-report&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:31:\"^market-report/([^/]+)/([^/]+)$\";s:126:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheet-market-report&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:25:\"^homes-for-sale-toppicks$\";s:64:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets-list\";s:53:\"^homes-for-sale-sold-details/([^/]+)/([^/]+)/([^/]+)$\";s:134:\"index.php?pagename=non_existent_page&ihf-type=idx-sold-detail&listingAddress=$matches[1]&listingNumber=$matches[2]&boardId=$matches[3]\";s:48:\"^homes-for-sale-details/([^/]+)/([^/]+)/([^/]+)$\";s:129:\"index.php?pagename=non_existent_page&ihf-type=idx-detail&listingAddress=$matches[1]&listingNumber=$matches[2]&boardId=$matches[3]\";s:24:\"^homes-for-sale-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:25:\"^homes-for-sale-featured$\";s:65:\"index.php?pagename=non_existent_page&ihf-type=idx-featured-search\";s:24:\"^listing-report/([^/]+)$\";s:85:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchId=$matches[1]\";s:41:\"^homes-for-sale-toppicks/([^/]+)/([^/]+)$\";s:113:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:25:\"^address-listing-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:20:\"^id-listing-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:33:\"^property-organizer-login-submit$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-login\";s:50:\"^index.php/homes-for-sale-search-advanced/([^/]+)$\";s:85:\"index.php?pagename=non_existent_page&ihf-type=idx-advanced-search&boardId=$matches[1]\";s:42:\"^index.php/homes-for-sale-search-advanced$\";s:65:\"index.php?pagename=non_existent_page&ihf-type=idx-advanced-search\";s:23:\"^index.php/office-list$\";s:61:\"index.php?pagename=non_existent_page&ihf-type=idx-office-list\";s:34:\"^index.php/mls-portal-office-list$\";s:72:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office-list\";s:51:\"^index.php/mls-portal-office-list-name-starts-with$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-board-list-name-starts-with\";s:41:\"^index.php/office-detail/([^/]+)/([^/]+)$\";s:107:\"index.php?pagename=non_existent_page&ihf-type=idx-office-detail&officeName=$matches[1]&officeId=$matches[2]\";s:52:\"^index.php/mls-portal-office-detail/([^/]+)/([^/]+)$\";s:121:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office&boardOfficeName=$matches[1]&boardOfficeId=$matches[2]\";s:22:\"^index.php/agent-list$\";s:60:\"index.php?pagename=non_existent_page&ihf-type=idx-agent-list\";s:33:\"^index.php/mls-portal-agent-list$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-list\";s:55:\"^index.php/mls-portal-agent-list-last-name-starts-with$\";s:93:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-list-last-name-starts-with\";s:36:\"^index.php/mls-portal-office-search$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-office-search\";s:35:\"^index.php/mls-portal-agent-search$\";s:73:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent-search\";s:40:\"^index.php/agent-detail/([^/]+)/([^/]+)$\";s:104:\"index.php?pagename=non_existent_page&ihf-type=idx-agent-detail&agentName=$matches[1]&agentId=$matches[2]\";s:44:\"^index.php/mls-portal-agent/([^/]+)/([^/]+)$\";s:120:\"index.php?pagename=non_existent_page&ihf-type=idx-mls-portal-agent&boardMemberName=$matches[1]&boardMemberId=$matches[2]\";s:24:\"^index.php/contact-form$\";s:62:\"index.php?pagename=non_existent_page&ihf-type=idx-contact-form\";s:26:\"^index.php/valuation-form$\";s:64:\"index.php?pagename=non_existent_page&ihf-type=idx-valuation-form\";s:31:\"^index.php/mortgage-calculator$\";s:69:\"index.php?pagename=non_existent_page&ihf-type=idx-mortgage-calculator\";s:28:\"^index.php/open-home-search$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-open-home-search-form\";s:33:\"^index.php/sold-featured-listing$\";s:71:\"index.php?pagename=non_existent_page&ihf-type=idx-sold-featured-listing\";s:36:\"^index.php/pending-featured-listing$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-pending-featured-listing\";s:32:\"^index.php/supplemental-listing$\";s:70:\"index.php?pagename=non_existent_page&ihf-type=idx-supplemental-listing\";s:33:\"^index.php/homes-for-sale-search$\";s:56:\"index.php?pagename=non_existent_page&ihf-type=idx-search\";s:37:\"^index.php/homes-for-sale-map-search$\";s:60:\"index.php?pagename=non_existent_page&ihf-type=idx-map-search\";s:57:\"^index.php/property-organizer-delete-saved-search-submit$\";s:95:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-delete-saved-search-submit\";s:66:\"^index.php/property-organizer-delete-saved-listing-submit/([^/]+)$\";s:116:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-delete-saved-listing&savedListingId=$matches[1]\";s:32:\"^index.php/email-alerts/([^/]+)$\";s:106:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search&boardId=$matches[1]\";s:24:\"^index.php/email-alerts$\";s:86:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search\";s:55:\"^index.php/property-organizer-edit-saved-search-submit$\";s:93:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-saved-search-submit\";s:38:\"^index.php/email-updates-confirmation$\";s:90:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-email-updates-success\";s:35:\"^index.php/property-organizer-help$\";s:73:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-help\";s:46:\"^index.php/property-organizer-edit-subscriber$\";s:84:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-edit-subscriber\";s:36:\"^index.php/property-organizer-login$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-login\";s:37:\"^index.php/property-organizer-logout$\";s:75:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-logout\";s:56:\"^index.php/property-organizer-view-saved-search/([^/]+)$\";s:114:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-search&searchProfileId=$matches[1]\";s:53:\"^index.php/property-organizer-view-saved-search-list$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-searches\";s:45:\"^index.php/property-organizer-saved-listings$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-view-saved-listings\";s:56:\"^index.php/property-organizer-resend-confirmation-email$\";s:94:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-resend-confirmation-email\";s:39:\"^index.php/property-organizer-activate$\";s:88:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-activate-subscriber\";s:41:\"^index.php/property-organizer-send-login$\";s:79:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-send-login\";s:42:\"^index.php/listing-report/([^/]+)/([^/]+)$\";s:113:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:44:\"^index.php/open-home-report/([^/]+)/([^/]+)$\";s:129:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheet-open-home-report&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:41:\"^index.php/market-report/([^/]+)/([^/]+)$\";s:126:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheet-market-report&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:35:\"^index.php/homes-for-sale-toppicks$\";s:64:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets-list\";s:63:\"^index.php/homes-for-sale-sold-details/([^/]+)/([^/]+)/([^/]+)$\";s:134:\"index.php?pagename=non_existent_page&ihf-type=idx-sold-detail&listingAddress=$matches[1]&listingNumber=$matches[2]&boardId=$matches[3]\";s:58:\"^index.php/homes-for-sale-details/([^/]+)/([^/]+)/([^/]+)$\";s:129:\"index.php?pagename=non_existent_page&ihf-type=idx-detail&listingAddress=$matches[1]&listingNumber=$matches[2]&boardId=$matches[3]\";s:34:\"^index.php/homes-for-sale-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:35:\"^index.php/homes-for-sale-featured$\";s:65:\"index.php?pagename=non_existent_page&ihf-type=idx-featured-search\";s:34:\"^index.php/listing-report/([^/]+)$\";s:85:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchId=$matches[1]\";s:51:\"^index.php/homes-for-sale-toppicks/([^/]+)/([^/]+)$\";s:113:\"index.php?pagename=non_existent_page&ihf-type=idx-hotsheets&savedSearchName=$matches[1]&savedSearchId=$matches[2]\";s:35:\"^index.php/address-listing-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:30:\"^index.php/id-listing-results$\";s:57:\"index.php?pagename=non_existent_page&ihf-type=idx-results\";s:43:\"^index.php/property-organizer-login-submit$\";s:74:\"index.php?pagename=non_existent_page&ihf-type=idx-property-organizer-login\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:11:\"property/?$\";s:28:\"index.php?post_type=property\";s:41:\"property/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=property&feed=$matches[1]\";s:36:\"property/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=property&feed=$matches[1]\";s:28:\"property/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=property&paged=$matches[1]\";s:9:\"agency/?$\";s:33:\"index.php?post_type=houzez_agency\";s:39:\"agency/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=houzez_agency&feed=$matches[1]\";s:34:\"agency/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=houzez_agency&feed=$matches[1]\";s:26:\"agency/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=houzez_agency&paged=$matches[1]\";s:8:\"agent/?$\";s:32:\"index.php?post_type=houzez_agent\";s:38:\"agent/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=houzez_agent&feed=$matches[1]\";s:33:\"agent/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=houzez_agent&feed=$matches[1]\";s:25:\"agent/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=houzez_agent&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"property/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"property/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"property/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"property/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"property/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"property/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"property/(.+?)/embed/?$\";s:41:\"index.php?property=$matches[1]&embed=true\";s:27:\"property/(.+?)/trackback/?$\";s:35:\"index.php?property=$matches[1]&tb=1\";s:47:\"property/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?property=$matches[1]&feed=$matches[2]\";s:42:\"property/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?property=$matches[1]&feed=$matches[2]\";s:35:\"property/(.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?property=$matches[1]&paged=$matches[2]\";s:42:\"property/(.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?property=$matches[1]&cpage=$matches[2]\";s:31:\"property/(.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?property=$matches[1]&page=$matches[2]\";s:54:\"property-type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_type=$matches[1]&feed=$matches[2]\";s:49:\"property-type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_type=$matches[1]&feed=$matches[2]\";s:30:\"property-type/([^/]+)/embed/?$\";s:46:\"index.php?property_type=$matches[1]&embed=true\";s:42:\"property-type/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?property_type=$matches[1]&paged=$matches[2]\";s:24:\"property-type/([^/]+)/?$\";s:35:\"index.php?property_type=$matches[1]\";s:47:\"status/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?property_status=$matches[1]&feed=$matches[2]\";s:42:\"status/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?property_status=$matches[1]&feed=$matches[2]\";s:23:\"status/([^/]+)/embed/?$\";s:48:\"index.php?property_status=$matches[1]&embed=true\";s:35:\"status/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?property_status=$matches[1]&paged=$matches[2]\";s:17:\"status/([^/]+)/?$\";s:37:\"index.php?property_status=$matches[1]\";s:48:\"feature/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?property_feature=$matches[1]&feed=$matches[2]\";s:43:\"feature/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?property_feature=$matches[1]&feed=$matches[2]\";s:24:\"feature/([^/]+)/embed/?$\";s:49:\"index.php?property_feature=$matches[1]&embed=true\";s:36:\"feature/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?property_feature=$matches[1]&paged=$matches[2]\";s:18:\"feature/([^/]+)/?$\";s:38:\"index.php?property_feature=$matches[1]\";s:46:\"label/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?property_label=$matches[1]&feed=$matches[2]\";s:41:\"label/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?property_label=$matches[1]&feed=$matches[2]\";s:22:\"label/([^/]+)/embed/?$\";s:47:\"index.php?property_label=$matches[1]&embed=true\";s:34:\"label/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?property_label=$matches[1]&paged=$matches[2]\";s:16:\"label/([^/]+)/?$\";s:36:\"index.php?property_label=$matches[1]\";s:48:\"country/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?property_country=$matches[1]&feed=$matches[2]\";s:43:\"country/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?property_country=$matches[1]&feed=$matches[2]\";s:24:\"country/([^/]+)/embed/?$\";s:49:\"index.php?property_country=$matches[1]&embed=true\";s:36:\"country/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?property_country=$matches[1]&paged=$matches[2]\";s:18:\"country/([^/]+)/?$\";s:38:\"index.php?property_country=$matches[1]\";s:46:\"state/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?property_state=$matches[1]&feed=$matches[2]\";s:41:\"state/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?property_state=$matches[1]&feed=$matches[2]\";s:22:\"state/([^/]+)/embed/?$\";s:47:\"index.php?property_state=$matches[1]&embed=true\";s:34:\"state/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?property_state=$matches[1]&paged=$matches[2]\";s:16:\"state/([^/]+)/?$\";s:36:\"index.php?property_state=$matches[1]\";s:45:\"city/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_city=$matches[1]&feed=$matches[2]\";s:40:\"city/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_city=$matches[1]&feed=$matches[2]\";s:21:\"city/([^/]+)/embed/?$\";s:46:\"index.php?property_city=$matches[1]&embed=true\";s:33:\"city/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?property_city=$matches[1]&paged=$matches[2]\";s:15:\"city/([^/]+)/?$\";s:35:\"index.php?property_city=$matches[1]\";s:45:\"area/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_area=$matches[1]&feed=$matches[2]\";s:40:\"area/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?property_area=$matches[1]&feed=$matches[2]\";s:21:\"area/([^/]+)/embed/?$\";s:46:\"index.php?property_area=$matches[1]&embed=true\";s:33:\"area/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?property_area=$matches[1]&paged=$matches[2]\";s:15:\"area/([^/]+)/?$\";s:35:\"index.php?property_area=$matches[1]\";s:34:\"agency/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"agency/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"agency/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"agency/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"agency/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"agency/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"agency/([^/]+)/embed/?$\";s:46:\"index.php?houzez_agency=$matches[1]&embed=true\";s:27:\"agency/([^/]+)/trackback/?$\";s:40:\"index.php?houzez_agency=$matches[1]&tb=1\";s:47:\"agency/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?houzez_agency=$matches[1]&feed=$matches[2]\";s:42:\"agency/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?houzez_agency=$matches[1]&feed=$matches[2]\";s:35:\"agency/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?houzez_agency=$matches[1]&paged=$matches[2]\";s:42:\"agency/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?houzez_agency=$matches[1]&cpage=$matches[2]\";s:31:\"agency/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?houzez_agency=$matches[1]&page=$matches[2]\";s:23:\"agency/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"agency/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"agency/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"agency/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"agency/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"agency/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"agent/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"agent/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"agent/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"agent/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"agent/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"agent/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:20:\"agent/(.+?)/embed/?$\";s:45:\"index.php?houzez_agent=$matches[1]&embed=true\";s:24:\"agent/(.+?)/trackback/?$\";s:39:\"index.php?houzez_agent=$matches[1]&tb=1\";s:44:\"agent/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?houzez_agent=$matches[1]&feed=$matches[2]\";s:39:\"agent/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?houzez_agent=$matches[1]&feed=$matches[2]\";s:32:\"agent/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?houzez_agent=$matches[1]&paged=$matches[2]\";s:39:\"agent/(.+?)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?houzez_agent=$matches[1]&cpage=$matches[2]\";s:28:\"agent/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?houzez_agent=$matches[1]&page=$matches[2]\";s:55:\"agent_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?agent_category=$matches[1]&feed=$matches[2]\";s:50:\"agent_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?agent_category=$matches[1]&feed=$matches[2]\";s:31:\"agent_category/([^/]+)/embed/?$\";s:47:\"index.php?agent_category=$matches[1]&embed=true\";s:43:\"agent_category/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?agent_category=$matches[1]&paged=$matches[2]\";s:25:\"agent_category/([^/]+)/?$\";s:36:\"index.php?agent_category=$matches[1]\";s:51:\"agent_city/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?agent_city=$matches[1]&feed=$matches[2]\";s:46:\"agent_city/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?agent_city=$matches[1]&feed=$matches[2]\";s:27:\"agent_city/([^/]+)/embed/?$\";s:43:\"index.php?agent_city=$matches[1]&embed=true\";s:39:\"agent_city/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?agent_city=$matches[1]&paged=$matches[2]\";s:21:\"agent_city/([^/]+)/?$\";s:32:\"index.php?agent_city=$matches[1]\";s:38:\"testimonials/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"testimonials/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"testimonials/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"testimonials/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"testimonials/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"testimonials/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"testimonials/(.+?)/embed/?$\";s:52:\"index.php?houzez_testimonials=$matches[1]&embed=true\";s:31:\"testimonials/(.+?)/trackback/?$\";s:46:\"index.php?houzez_testimonials=$matches[1]&tb=1\";s:39:\"testimonials/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?houzez_testimonials=$matches[1]&paged=$matches[2]\";s:46:\"testimonials/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?houzez_testimonials=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?houzez_testimonials=$matches[1]&page=$matches[2]\";s:35:\"partner/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"partner/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"partner/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"partner/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"partner/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"partner/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"partner/([^/]+)/embed/?$\";s:47:\"index.php?houzez_partner=$matches[1]&embed=true\";s:28:\"partner/([^/]+)/trackback/?$\";s:41:\"index.php?houzez_partner=$matches[1]&tb=1\";s:36:\"partner/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?houzez_partner=$matches[1]&paged=$matches[2]\";s:43:\"partner/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?houzez_partner=$matches[1]&cpage=$matches[2]\";s:32:\"partner/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?houzez_partner=$matches[1]&page=$matches[2]\";s:24:\"partner/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"partner/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"partner/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"partner/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"partner/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"partner/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"reviews/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"reviews/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"reviews/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"reviews/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"reviews/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"reviews/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"reviews/(.+?)/embed/?$\";s:66:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&embed=true\";s:26:\"reviews/(.+?)/trackback/?$\";s:60:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&tb=1\";s:34:\"reviews/(.+?)/page/?([0-9]{1,})/?$\";s:73:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&paged=$matches[2]\";s:41:\"reviews/(.+?)/comment-page-([0-9]{1,})/?$\";s:73:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&cpage=$matches[2]\";s:30:\"reviews/(.+?)(?:/([0-9]+))?/?$\";s:72:\"index.php?post_type=houzez_reviews&pagename=$matches[1]&page=$matches[2]\";s:41:\"user_packages/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"user_packages/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"user_packages/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"user_packages/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"user_packages/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"user_packages/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"user_packages/([^/]+)/embed/?$\";s:46:\"index.php?user_packages=$matches[1]&embed=true\";s:34:\"user_packages/([^/]+)/trackback/?$\";s:40:\"index.php?user_packages=$matches[1]&tb=1\";s:42:\"user_packages/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?user_packages=$matches[1]&paged=$matches[2]\";s:49:\"user_packages/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?user_packages=$matches[1]&cpage=$matches[2]\";s:38:\"user_packages/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?user_packages=$matches[1]&page=$matches[2]\";s:30:\"user_packages/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"user_packages/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"user_packages/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"user_packages/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"user_packages/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"user_packages/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:35:\"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"mc4wp-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=2&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:31:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:53:\"access-category-password/access-category-password.php\";i:2;s:25:\"add-to-any/add-to-any.php\";i:3;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:4;s:35:\"autodescription/autodescription.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:39:\"content-protector/content-protector.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:9;s:35:\"google-site-kit/google-site-kit.php\";i:10;s:25:\"houzez-crm/houzez-crm.php\";i:11;s:47:\"houzez-login-register/houzez-login-register.php\";i:12;s:57:\"houzez-theme-functionality/houzez-theme-functionality.php\";i:13;s:56:\"inline-google-spreadsheet-viewer/inline-gdocs-viewer.php\";i:14;s:27:\"js_composer/js_composer.php\";i:15;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:16;s:30:\"optima-express/iHomefinder.php\";i:17;s:17:\"postie/postie.php\";i:19;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:21;s:65:\"responsive-mortgage-calculator/responsive-mortgage-calculator.php\";i:22;s:23:\"revslider/revslider.php\";i:23;s:33:\"simple-real-estate-pack-4/srp.php\";i:24;s:25:\"tablepress/tablepress.php\";i:25;s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";i:26;s:37:\"user-role-editor/user-role-editor.php\";i:27;s:19:\"weforms/weforms.php\";i:28;s:17:\"wp-docs/index.php\";i:29;s:35:\"wp-fastest-cache/wpFastestCache.php\";i:30;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:31;s:23:\"wp-smushit/wp-smush.php\";i:32;s:27:\"wps-cleaner/wps-cleaner.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','16','yes'),(39,'recently_edited','a:5:{i:0;s:66:\"/home/lanternrealty/public_html/wp-content/themes/houzez/style.css\";i:2;s:70:\"/home/lanternrealty/public_html/wp-content/plugins/akismet/akismet.php\";i:3;s:67:\"/home/lanternrealty/public_html/wp-content/themes/houzez/footer.php\";i:4;s:82:\"/home/lanternrealty/public_html/wp-content/themes/houzez/template-parts/footer.php\";i:5;s:83:\"/home/lanternrealty/public_html/wp-content/themes/houzez/template/template-page.php\";}','no'),(40,'template','houzez','yes'),(41,'stylesheet','houzez','yes'),(320501,'finished_updating_comment_type','1','yes'),(44,'comment_registration','1','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','houzez_agent','yes'),(48,'db_version','51917','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','0','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','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','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:1;a:0:{}i:2;a:4:{s:5:\"title\";s:13:\"About Lantern\";s:4:\"text\";s:354:\"Lantern Realty and Development is a full-service real estate agency, founded in 2018. Our team of of highly qualified and recommended agents are ready to help you buy or sell homes and properties throughout North Carolina. We specialize in properties throughout the Kannapolis, Concord, China Grove, Landis, Harrisburg, Salisbury and surrounding markets.\";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:11:{s:30:\"wp-chatbot/inc/class-ht-cc.php\";a:2:{i:0;s:13:\"HTCC_Register\";i:1;s:9:\"uninstall\";}s:47:\"participants-database/participants-database.php\";a:2:{i:0;s:8:\"PDb_Init\";i:1;s:12:\"on_uninstall\";}s:27:\"wps-cleaner/wps-cleaner.php\";a:2:{i:0;s:23:\"\\WPS\\WPS_Cleaner\\Plugin\";i:1;s:9:\"uninstall\";}s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:59:\"ultimate-social-media-icons/ultimate_social_media_icons.php\";s:20:\"sfsi_Unistall_plugin\";s:45:\"password-protect-page/wp-protect-password.php\";s:31:\"uninstall_password_protect_page\";s:27:\"autoptimize/autoptimize.php\";s:29:\"autoptimizeMain::on_uninstall\";s:59:\"modern-events-calendar-lite/modern-events-calendar-lite.php\";a:2:{i:0;s:11:\"MEC_factory\";i:1;s:9:\"uninstall\";}s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";a:2:{i:0;s:15:\"Account\\Account\";i:1;s:25:\"onUninstallPluginListener\";}s:37:\"user-role-editor/user-role-editor.php\";a:2:{i:0;s:16:\"User_Role_Editor\";i:1;s:9:\"uninstall\";}s:40:\"real-estate-listing-realtyna-wpl/WPL.php\";a:2:{i:0;s:14:\"wpl_extensions\";i:1;s:13:\"uninstall_wpl\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','2','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','28','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','','yes'),(93,'initial_db_version','38590','yes'),(94,'lrwp_user_roles','a:15:{s:13:\"administrator\";a:16:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:222:{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:17:\"create_properties\";b:1;s:18:\"publish_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:22:\"read_user_registration\";b:1;s:31:\"read_private_user_registrations\";b:1;s:15:\"post_via_postie\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;s:14:\"ure_edit_roles\";b:1;s:16:\"ure_create_roles\";b:1;s:16:\"ure_delete_roles\";b:1;s:23:\"ure_create_capabilities\";b:1;s:23:\"ure_delete_capabilities\";b:1;s:18:\"ure_manage_options\";b:1;s:15:\"ure_reset_roles\";b:1;s:25:\"read_private_testimonials\";b:1;s:12:\"do_not_allow\";b:1;s:22:\"edit_tablepress_tables\";b:1;s:29:\"edit_others_tablepress_tables\";b:1;s:25:\"publish_tablepress_tables\";b:1;s:30:\"read_private_tablepress_tables\";b:1;s:12:\"create_posts\";b:1;s:21:\"erp_ac_create_account\";b:1;s:27:\"erp_ac_create_bank_transfer\";b:1;s:22:\"erp_ac_create_customer\";b:1;s:29:\"erp_ac_create_expenses_credit\";b:1;s:30:\"erp_ac_create_expenses_voucher\";b:1;s:21:\"erp_ac_create_journal\";b:1;s:27:\"erp_ac_create_sales_invoice\";b:1;s:27:\"erp_ac_create_sales_payment\";b:1;s:20:\"erp_ac_create_vendor\";b:1;s:21:\"erp_ac_delete_account\";b:1;s:22:\"erp_ac_delete_customer\";b:1;s:29:\"erp_ac_delete_other_customers\";b:1;s:27:\"erp_ac_delete_other_vendors\";b:1;s:20:\"erp_ac_delete_vendor\";b:1;s:19:\"erp_ac_edit_account\";b:1;s:20:\"erp_ac_edit_customer\";b:1;s:27:\"erp_ac_edit_other_customers\";b:1;s:25:\"erp_ac_edit_other_vendors\";b:1;s:18:\"erp_ac_edit_vendor\";b:1;s:30:\"erp_ac_publish_expenses_credit\";b:1;s:31:\"erp_ac_publish_expenses_voucher\";b:1;s:28:\"erp_ac_publish_sales_invoice\";b:1;s:28:\"erp_ac_publish_sales_payment\";b:1;s:25:\"erp_ac_view_account_lists\";b:1;s:25:\"erp_ac_view_bank_accounts\";b:1;s:20:\"erp_ac_view_customer\";b:1;s:21:\"erp_ac_view_dashboard\";b:1;s:19:\"erp_ac_view_expense\";b:1;s:28:\"erp_ac_view_expenses_summary\";b:1;s:19:\"erp_ac_view_journal\";b:1;s:27:\"erp_ac_view_other_customers\";b:1;s:26:\"erp_ac_view_other_expenses\";b:1;s:26:\"erp_ac_view_other_journals\";b:1;s:23:\"erp_ac_view_other_sales\";b:1;s:25:\"erp_ac_view_other_vendors\";b:1;s:19:\"erp_ac_view_reports\";b:1;s:16:\"erp_ac_view_sale\";b:1;s:25:\"erp_ac_view_sales_summary\";b:1;s:26:\"erp_ac_view_single_account\";b:1;s:27:\"erp_ac_view_single_customer\";b:1;s:25:\"erp_ac_view_single_vendor\";b:1;s:18:\"erp_ac_view_vendor\";b:1;s:17:\"erp_can_terminate\";b:1;s:22:\"erp_crate_announcement\";b:1;s:21:\"erp_create_attendance\";b:1;s:20:\"erp_create_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:20:\"erp_create_education\";b:1;s:19:\"erp_create_employee\";b:1;s:21:\"erp_create_experience\";b:1;s:17:\"erp_create_review\";b:1;s:21:\"erp_delete_attendance\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_delete_document\";b:1;s:20:\"erp_delete_education\";b:1;s:19:\"erp_delete_employee\";b:1;s:21:\"erp_delete_experience\";b:1;s:17:\"erp_delete_review\";b:1;s:19:\"erp_edit_attendance\";b:1;s:18:\"erp_edit_dependent\";b:1;s:17:\"erp_edit_document\";b:1;s:18:\"erp_edit_education\";b:1;s:17:\"erp_edit_employee\";b:1;s:19:\"erp_edit_experience\";b:1;s:24:\"erp_leave_create_request\";b:1;s:16:\"erp_leave_manage\";b:1;s:17:\"erp_list_employee\";b:1;s:23:\"erp_manage_announcement\";b:1;s:21:\"erp_manage_department\";b:1;s:22:\"erp_manage_designation\";b:1;s:22:\"erp_manage_hr_settings\";b:1;s:18:\"erp_manage_jobinfo\";b:1;s:17:\"erp_manage_review\";b:1;s:21:\"erp_view_announcement\";b:1;s:19:\"erp_view_attendance\";b:1;s:18:\"erp_view_dependent\";b:1;s:17:\"erp_view_document\";b:1;s:18:\"erp_view_education\";b:1;s:17:\"erp_view_employee\";b:1;s:19:\"erp_view_experience\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"install_languages\";b:1;s:14:\"resume_plugins\";b:1;s:13:\"resume_themes\";b:1;s:23:\"view_site_health_checks\";b:1;s:13:\"config_postie\";b:1;s:19:\"delete_user_package\";b:1;s:20:\"delete_user_packages\";b:1;s:18:\"edit_user_packages\";b:1;s:27:\"delete_others_user_packages\";b:1;s:24:\"wpcf7_edit_contact_forms\";b:1;s:24:\"delete_tablepress_tables\";b:1;s:24:\"gdoc_query_sql_databases\";b:1;}s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"editor\";a:16:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:83:{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:17:\"create_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:18:\"publish_properties\";b:1;s:15:\"edit_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"author\";a:16:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:20:{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:15:\"post_via_postie\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:11:\"contributor\";a:16:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:12:{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:\"create_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:10:\"subscriber\";a:16:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:14:\"erp_hr_manager\";a:2:{s:4:\"name\";s:10:\"HR Manager\";s:12:\"capabilities\";a:42:{s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"erp_list_employee\";b:1;s:19:\"erp_create_employee\";b:1;s:17:\"erp_view_employee\";b:1;s:17:\"erp_edit_employee\";b:1;s:19:\"erp_delete_employee\";b:1;s:17:\"erp_create_review\";b:1;s:17:\"erp_delete_review\";b:1;s:17:\"erp_manage_review\";b:1;s:22:\"erp_crate_announcement\";b:1;s:21:\"erp_view_announcement\";b:1;s:23:\"erp_manage_announcement\";b:1;s:18:\"erp_manage_jobinfo\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:21:\"erp_manage_department\";b:1;s:22:\"erp_manage_designation\";b:1;s:24:\"erp_leave_create_request\";b:1;s:16:\"erp_leave_manage\";b:1;s:22:\"erp_manage_hr_settings\";b:1;s:21:\"erp_create_experience\";b:1;s:19:\"erp_edit_experience\";b:1;s:19:\"erp_view_experience\";b:1;s:21:\"erp_delete_experience\";b:1;s:20:\"erp_create_education\";b:1;s:18:\"erp_edit_education\";b:1;s:18:\"erp_view_education\";b:1;s:20:\"erp_delete_education\";b:1;s:17:\"erp_can_terminate\";b:1;s:20:\"erp_create_dependent\";b:1;s:18:\"erp_edit_dependent\";b:1;s:18:\"erp_view_dependent\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:17:\"erp_edit_document\";b:1;s:17:\"erp_view_document\";b:1;s:19:\"erp_delete_document\";b:1;s:21:\"erp_create_attendance\";b:1;s:19:\"erp_edit_attendance\";b:1;s:19:\"erp_view_attendance\";b:1;s:21:\"erp_delete_attendance\";b:1;}}s:8:\"employee\";a:2:{s:4:\"name\";s:8:\"Employee\";s:12:\"capabilities\";a:26:{s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"erp_list_employee\";b:1;s:17:\"erp_view_employee\";b:1;s:17:\"erp_edit_employee\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:24:\"erp_leave_create_request\";b:1;s:21:\"erp_view_announcement\";b:1;s:21:\"erp_create_experience\";b:1;s:19:\"erp_edit_experience\";b:1;s:19:\"erp_view_experience\";b:1;s:21:\"erp_delete_experience\";b:1;s:20:\"erp_create_education\";b:1;s:18:\"erp_edit_education\";b:1;s:18:\"erp_view_education\";b:1;s:20:\"erp_delete_education\";b:1;s:20:\"erp_create_dependent\";b:1;s:18:\"erp_edit_dependent\";b:1;s:18:\"erp_view_dependent\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:17:\"erp_edit_document\";b:1;s:17:\"erp_view_document\";b:1;s:19:\"erp_delete_document\";b:1;s:19:\"erp_view_attendance\";b:1;}}s:14:\"erp_ac_manager\";a:2:{s:4:\"name\";s:18:\"Accounting Manager\";s:12:\"capabilities\";a:43:{s:4:\"read\";b:1;s:21:\"erp_ac_view_dashboard\";b:1;s:20:\"erp_ac_view_customer\";b:1;s:27:\"erp_ac_view_single_customer\";b:1;s:27:\"erp_ac_view_other_customers\";b:1;s:22:\"erp_ac_create_customer\";b:1;s:20:\"erp_ac_edit_customer\";b:1;s:27:\"erp_ac_edit_other_customers\";b:1;s:22:\"erp_ac_delete_customer\";b:1;s:29:\"erp_ac_delete_other_customers\";b:1;s:18:\"erp_ac_view_vendor\";b:1;s:25:\"erp_ac_view_other_vendors\";b:1;s:20:\"erp_ac_create_vendor\";b:1;s:18:\"erp_ac_edit_vendor\";b:1;s:25:\"erp_ac_edit_other_vendors\";b:1;s:20:\"erp_ac_delete_vendor\";b:1;s:27:\"erp_ac_delete_other_vendors\";b:1;s:16:\"erp_ac_view_sale\";b:1;s:25:\"erp_ac_view_single_vendor\";b:1;s:23:\"erp_ac_view_other_sales\";b:1;s:25:\"erp_ac_view_sales_summary\";b:1;s:27:\"erp_ac_create_sales_payment\";b:1;s:28:\"erp_ac_publish_sales_payment\";b:1;s:27:\"erp_ac_create_sales_invoice\";b:1;s:28:\"erp_ac_publish_sales_invoice\";b:1;s:19:\"erp_ac_view_expense\";b:1;s:26:\"erp_ac_view_other_expenses\";b:1;s:28:\"erp_ac_view_expenses_summary\";b:1;s:30:\"erp_ac_create_expenses_voucher\";b:1;s:31:\"erp_ac_publish_expenses_voucher\";b:1;s:29:\"erp_ac_create_expenses_credit\";b:1;s:30:\"erp_ac_publish_expenses_credit\";b:1;s:25:\"erp_ac_view_account_lists\";b:1;s:26:\"erp_ac_view_single_account\";b:1;s:21:\"erp_ac_create_account\";b:1;s:19:\"erp_ac_edit_account\";b:1;s:21:\"erp_ac_delete_account\";b:1;s:25:\"erp_ac_view_bank_accounts\";b:1;s:27:\"erp_ac_create_bank_transfer\";b:1;s:19:\"erp_ac_view_journal\";b:1;s:26:\"erp_ac_view_other_journals\";b:1;s:21:\"erp_ac_create_journal\";b:1;s:19:\"erp_ac_view_reports\";b:1;}}s:12:\"houzez_buyer\";a:2:{s:4:\"name\";s:5:\"Buyer\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:13:\"houzez_agency\";a:2:{s:4:\"name\";s:6:\"Agency\";s:12:\"capabilities\";a:21:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:7:\"level_2\";b:1;}}s:12:\"houzez_agent\";a:2:{s:4:\"name\";s:5:\"Agent\";s:12:\"capabilities\";a:21:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:7:\"level_2\";b:1;}}s:13:\"houzez_seller\";a:2:{s:4:\"name\";s:6:\"Seller\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:13:\"read_property\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_2\";b:1;}}s:12:\"houzez_owner\";a:2:{s:4:\"name\";s:5:\"Owner\";s:12:\"capabilities\";a:14:{s:4:\"read\";b:0;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:0;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_2\";b:1;}}s:14:\"houzez_manager\";a:2:{s:4:\"name\";s:7:\"Manager\";s:12:\"capabilities\";a:14:{s:4:\"read\";b:0;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:0;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_5\";b:1;}}s:5:\"owner\";a:2:{s:4:\"name\";s:5:\"Owner\";s:12:\"capabilities\";a:62:{s:13:\"create_agents\";b:1;s:12:\"create_posts\";b:1;s:19:\"create_testimonials\";b:1;s:12:\"delete_agent\";b:1;s:13:\"delete_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"delete_others_posts\";b:1;s:26:\"delete_others_testimonials\";b:1;s:12:\"delete_posts\";b:1;s:21:\"delete_private_agents\";b:1;s:20:\"delete_private_posts\";b:1;s:27:\"delete_private_testimonials\";b:1;s:23:\"delete_published_agents\";b:1;s:22:\"delete_published_posts\";b:1;s:29:\"delete_published_testimonials\";b:1;s:18:\"delete_testimonial\";b:1;s:19:\"delete_testimonials\";b:1;s:10:\"edit_agent\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:17:\"edit_others_posts\";b:1;s:29:\"edit_others_tablepress_tables\";b:1;s:24:\"edit_others_testimonials\";b:1;s:10:\"edit_posts\";b:1;s:19:\"edit_private_agents\";b:1;s:18:\"edit_private_posts\";b:1;s:25:\"edit_private_testimonials\";b:1;s:21:\"edit_published_agents\";b:1;s:20:\"edit_published_posts\";b:1;s:27:\"edit_published_testimonials\";b:1;s:22:\"edit_tablepress_tables\";b:1;s:16:\"edit_testimonial\";b:1;s:17:\"edit_testimonials\";b:1;s:7:\"level_0\";b:1;s:7:\"level_1\";b:1;s:7:\"level_2\";b:1;s:14:\"publish_agents\";b:1;s:13:\"publish_posts\";b:1;s:25:\"publish_tablepress_tables\";b:1;s:20:\"publish_testimonials\";b:1;s:4:\"read\";b:1;s:10:\"read_agent\";b:1;s:19:\"read_private_agents\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:23:\"read_private_properties\";b:1;s:30:\"read_private_tablepress_tables\";b:1;s:25:\"read_private_testimonials\";b:1;s:31:\"read_private_user_registrations\";b:1;s:13:\"read_property\";b:1;s:16:\"read_testimonial\";b:1;s:22:\"read_user_registration\";b:1;s:30:\"tablepress_access_about_screen\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:12:\"upload_files\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:3:{s:5:\"title\";s:6:\"Recent\";s:6:\"number\";i:3;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:16:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:10:\"calendar-2\";i:1;s:25:\"ihomefindersocialwidget-3\";i:2;s:31:\"ihomefinderhotsheetlistwidget-3\";i:3;s:27:\"ihomefinderagentbiowidget-3\";}s:15:\"default-sidebar\";a:2:{i:0;s:14:\"recent-posts-2\";i:1;s:12:\"categories-2\";}s:16:\"property-listing\";a:0:{}s:14:\"search-sidebar\";a:4:{i:0;s:23:\"a2a_share_save_widget-2\";i:1;s:24:\"ihomefinderloginwidget-3\";i:2;s:30:\"ihomefinderpropertiesgallery-3\";i:3;s:6:\"text-2\";}s:15:\"single-property\";a:0:{}s:12:\"page-sidebar\";a:8:{i:0;s:23:\"a2a_share_save_widget-3\";i:1;s:24:\"ihomefinderloginwidget-4\";i:2;s:30:\"ihomefinderpropertiesgallery-4\";i:3;s:14:\"media_image-12\";i:4;s:14:\"media_image-15\";i:5;s:14:\"media_image-18\";i:6;s:14:\"media_image-13\";i:7;s:14:\"media_image-14\";}s:14:\"agency-sidebar\";a:0:{}s:13:\"agent-sidebar\";a:6:{i:0;s:28:\"ihomefindervaluationwidget-3\";i:1;s:13:\"media_image-8\";i:2;s:14:\"media_image-16\";i:3;s:14:\"media_image-17\";i:4;s:13:\"media_image-9\";i:5;s:14:\"media_image-10\";}s:23:\"hz-custom-widget-area-1\";a:0:{}s:23:\"hz-custom-widget-area-2\";a:0:{}s:23:\"hz-custom-widget-area-3\";a:0:{}s:16:\"footer-sidebar-1\";a:1:{i:0;s:16:\"houzez_contact-2\";}s:16:\"footer-sidebar-2\";a:1:{i:0;s:13:\"media_image-4\";}s:16:\"footer-sidebar-3\";a:1:{i:0;s:13:\"media_image-3\";}s:16:\"footer-sidebar-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:13:{i:3;a:15:{s:13:\"attachment_id\";i:317;s:3:\"url\";s:73:\"https://lantern-realty.com/wp-content/uploads/2018/08/HomeValue-02-01.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:665;s:6:\"height\";i:149;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:16:\"/valuation-form/\";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:\"\";}i:4;a:15:{s:13:\"attachment_id\";i:356;s:3:\"url\";s:75:\"https://lantern-realty.com/wp-content/uploads/2018/09/ehomlslogo-300x99.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:717;s:6:\"height\";i:237;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:\"\";}i:8;a:15:{s:13:\"attachment_id\";i:451;s:3:\"url\";s:81:\"https://lantern-realty.com/wp-content/uploads/2019/02/Terry-Whitesell-300x140.png\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:952;s:6:\"height\";i:444;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:30:\"http://www.terrywhitesell.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:\"\";}i:9;a:15:{s:13:\"attachment_id\";i:453;s:3:\"url\";s:87:\"https://lantern-realty.com/wp-content/uploads/2019/02/HomeWarrantyofAmerica-300x131.jpg\";s:5:\"title\";s:29:\"Lantern Home Warranty Partner\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:331;s:6:\"height\";i:144;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:32:\"https://www.hwahomewarranty.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:\"\";}i:10;a:15:{s:13:\"attachment_id\";i:456;s:3:\"url\";s:74:\"https://lantern-realty.com/wp-content/uploads/2019/02/KnippLaw-300x163.jpg\";s:5:\"title\";s:38:\"Lantern Preferred Real Estate Law Firm\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:500;s:6:\"height\";i:272;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:64:\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\";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:\"\";}i:12;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:952;s:6:\"height\";i:444;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:30:\"http://www.terrywhitesell.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:451;s:3:\"url\";s:81:\"https://lantern-realty.com/wp-content/uploads/2019/02/Terry-Whitesell-300x140.png\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}i:13;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:331;s:6:\"height\";i:144;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:32:\"https://www.hwahomewarranty.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:453;s:3:\"url\";s:87:\"https://lantern-realty.com/wp-content/uploads/2019/02/HomeWarrantyofAmerica-300x131.jpg\";s:5:\"title\";s:29:\"Lantern Home Warranty Partner\";}i:14;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:500;s:6:\"height\";i:272;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:64:\"https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/\";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:456;s:3:\"url\";s:74:\"https://lantern-realty.com/wp-content/uploads/2019/02/KnippLaw-300x163.jpg\";s:5:\"title\";s:38:\"Lantern Preferred Real Estate Law Firm\";}i:15;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:38:\"https://ryanivory.excellencebyarc.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:1930;s:3:\"url\";s:85:\"https://lantern-realty.com/wp-content/uploads/2021/06/Ryan-Ivory_ARC_Home-300x169.jpg\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}i:16;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:38:\"https://ryanivory.excellencebyarc.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:1930;s:3:\"url\";s:85:\"https://lantern-realty.com/wp-content/uploads/2021/06/Ryan-Ivory_ARC_Home-300x169.jpg\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}i:17;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:591;s:6:\"height\";i:281;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:34:\"https://alcova.com/apply?lo=skteam\";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:2188;s:3:\"url\";s:79:\"https://lantern-realty.com/wp-content/uploads/2021/12/Stephen_Knorr-300x143.png\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}i:18;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:591;s:6:\"height\";i:281;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:34:\"https://alcova.com/apply?lo=skteam\";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:2188;s:3:\"url\";s:79:\"https://lantern-realty.com/wp-content/uploads/2021/12/Stephen_Knorr-300x143.png\";s:5:\"title\";s:24:\"Lantern Preferred Lender\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'cron','a:24:{i:1657490898;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:1657490988;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:1657491354;a:1:{s:17:\"check_postie_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"tenminutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1657491983;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:1657493259;a:1:{s:29:\"wps_cleaner_indexation_medias\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1657494427;a:1:{s:26:\"um_hourly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1657496666;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:1657499183;a:2:{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:1657499211;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:1657499937;a:1:{s:36:\"houzez_check_new_listing_action_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657502126;a:1:{s:41:\"googlesitekit_cron_update_remote_features\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1657504869;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1657508827;a:1:{s:30:\"um_twicedaily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1657509975;a:1:{s:31:\"eael_remove_unused_options_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657512120;a:1:{s:29:\"mc4wp_refresh_mailchimp_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657530677;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1657548362;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:1657550672;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:1657552027;a:1:{s:25:\"um_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1657553429;a:1:{s:21:\"ai1wm_storage_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:1657562161;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:1657654760;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:1657897627;a:1:{s:26:\"um_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(112,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1534725238;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(172,'widget_ihomefinderlinkwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'smm_version','1.3.1','yes'),(123,'disable_smm','0','yes'),(124,'wpforms_shareasale_id','1587694','yes'),(128,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(130,'do_activate','0','yes'),(357324,'_transient_5c7179c35_custom_js','','yes'),(357325,'_transient_5c7179c35_updated_at','1605059632','yes'),(357337,'_transient_1bdda03bc_elements','a:0:{}','yes'),(357338,'_transient_1bdda03bc_custom_js','','yes'),(357339,'_transient_1bdda03bc_updated_at','1605059632','yes'),(357341,'_transient_665cf839e_elements','a:0:{}','yes'),(357342,'_transient_665cf839e_custom_js','','yes'),(357343,'_transient_665cf839e_updated_at','1605059632','yes'),(357346,'_transient_c68aa4a6d_elements','a:0:{}','yes'),(357347,'_transient_c68aa4a6d_custom_js','','yes'),(357348,'_transient_c68aa4a6d_updated_at','1605059632','yes'),(357371,'_transient_0aefd1f97_elements','a:0:{}','yes'),(357372,'_transient_0aefd1f97_custom_js','','yes'),(357373,'_transient_0aefd1f97_updated_at','1605059632','yes'),(357397,'_transient_da8c22f62_elements','a:0:{}','yes'),(357398,'_transient_da8c22f62_custom_js','','yes'),(357399,'_transient_da8c22f62_updated_at','1605059632','yes'),(357418,'_transient_3f8fdefbd_elements','a:0:{}','yes'),(357419,'_transient_3f8fdefbd_custom_js','','yes'),(357420,'_transient_3f8fdefbd_updated_at','1605059632','yes'),(357454,'_transient_d12087048_elements','a:0:{}','yes'),(357455,'_transient_d12087048_custom_js','','yes'),(357456,'_transient_d12087048_updated_at','1605059632','yes'),(140,'_amn_wpforms-lite_last_checked','1587945600','yes'),(141,'wpforms_review','a:2:{s:4:\"time\";i:1536838396;s:9:\"dismissed\";b:1;}','yes'),(146,'recently_activated','a:0:{}','yes'),(305,'widget_houzez_advanced_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1869,'autodescription-site-settings','a:142:{s:22:\"display_seo_bar_tables\";i:1;s:21:\"display_pixel_counter\";i:1;s:25:\"display_character_counter\";i:1;s:18:\"alter_search_query\";i:1;s:23:\"alter_search_query_type\";s:8:\"in_query\";s:19:\"alter_archive_query\";i:1;s:24:\"alter_archive_query_type\";s:8:\"in_query\";s:13:\"cache_sitemap\";i:1;s:16:\"canonical_scheme\";s:5:\"https\";s:18:\"prev_next_archives\";i:1;s:19:\"prev_next_frontpage\";i:1;s:17:\"timestamps_format\";s:1:\"1\";s:15:\"title_seperator\";s:4:\"pipe\";s:14:\"title_location\";s:5:\"right\";s:21:\"description_separator\";s:4:\"pipe\";s:21:\"description_additions\";i:1;s:20:\"description_blogname\";i:1;s:22:\"homepage_title_tagline\";s:0:\"\";s:14:\"homepage_title\";s:0:\"\";s:20:\"homepage_description\";s:350:\"Lantern Realty and Development is a full service real estate agency based in Kannapolis, North Carolina. We proudly serve Kannapolis, Concord, Harrisburg, Landis, China Grove, and the surrounding areas. Real Estate Specialties: Buyers Agent, Listing Agent, Foreclosures, Short Sales, First Time Home Buyers, New Construction, Relocation, VA purchases\";s:19:\"home_title_location\";s:4:\"left\";s:16:\"homepage_tagline\";i:1;s:25:\"homepage_social_image_url\";s:0:\"\";s:24:\"homepage_social_image_id\";i:0;s:7:\"og_tags\";i:1;s:13:\"facebook_tags\";i:1;s:12:\"twitter_tags\";i:1;s:19:\"social_image_fb_url\";s:0:\"\";s:18:\"social_image_fb_id\";i:0;s:14:\"facebook_appid\";s:0:\"\";s:18:\"facebook_publisher\";s:38:\"https://www.facebook.com/lanternrealty\";s:15:\"facebook_author\";s:0:\"\";s:12:\"twitter_card\";s:19:\"summary_large_image\";s:12:\"twitter_site\";s:0:\"\";s:15:\"twitter_creator\";s:0:\"\";s:17:\"post_publish_time\";i:1;s:16:\"post_modify_time\";i:1;s:19:\"ld_json_breadcrumbs\";i:1;s:17:\"ld_json_searchbox\";i:1;s:16:\"knowledge_output\";i:1;s:14:\"knowledge_type\";s:12:\"organization\";s:14:\"knowledge_name\";s:0:\"\";s:14:\"knowledge_logo\";i:1;s:18:\"knowledge_logo_url\";s:0:\"\";s:17:\"knowledge_logo_id\";i:0;s:18:\"knowledge_facebook\";s:0:\"\";s:17:\"knowledge_twitter\";s:0:\"\";s:15:\"knowledge_gplus\";s:0:\"\";s:19:\"knowledge_instagram\";s:0:\"\";s:17:\"knowledge_youtube\";s:0:\"\";s:18:\"knowledge_linkedin\";s:0:\"\";s:19:\"knowledge_pinterest\";s:0:\"\";s:20:\"knowledge_soundcloud\";s:0:\"\";s:16:\"knowledge_tumblr\";s:0:\"\";s:6:\"noydir\";i:1;s:13:\"paged_noindex\";i:1;s:12:\"date_noindex\";i:1;s:14:\"search_noindex\";i:1;s:18:\"attachment_noindex\";i:1;s:19:\"google_verification\";s:0:\"\";s:17:\"bing_verification\";s:0:\"\";s:19:\"yandex_verification\";s:0:\"\";s:17:\"pint_verification\";s:0:\"\";s:15:\"sitemaps_output\";i:1;s:15:\"sitemaps_robots\";i:1;s:17:\"sitemaps_modified\";i:1;s:11:\"ping_google\";i:1;s:9:\"ping_bing\";i:1;s:11:\"ping_yandex\";i:1;s:14:\"sitemap_styles\";i:1;s:18:\"sitemap_color_main\";s:4:\"#333\";s:20:\"sitemap_color_accent\";s:7:\"#00cd98\";s:16:\"excerpt_the_feed\";i:1;s:15:\"source_the_feed\";i:1;s:12:\"updated_3060\";i:1;s:22:\"cache_meta_description\";i:0;s:17:\"cache_meta_schema\";i:0;s:12:\"cache_object\";i:0;s:23:\"display_seo_bar_metabox\";i:0;s:19:\"title_rem_additions\";i:0;s:18:\"title_rem_prefixes\";i:0;s:16:\"category_noindex\";i:0;s:11:\"tag_noindex\";i:0;s:14:\"author_noindex\";i:0;s:12:\"site_noindex\";i:0;s:17:\"category_nofollow\";i:0;s:12:\"tag_nofollow\";i:0;s:15:\"author_nofollow\";i:0;s:13:\"date_nofollow\";i:0;s:15:\"search_nofollow\";i:0;s:19:\"attachment_nofollow\";i:0;s:13:\"site_nofollow\";i:0;s:18:\"category_noarchive\";i:0;s:13:\"tag_noarchive\";i:0;s:16:\"author_noarchive\";i:0;s:14:\"date_noarchive\";i:0;s:16:\"search_noarchive\";i:0;s:20:\"attachment_noarchive\";i:0;s:14:\"site_noarchive\";i:0;s:18:\"home_paged_noindex\";i:0;s:16:\"homepage_noindex\";i:0;s:17:\"homepage_nofollow\";i:0;s:18:\"homepage_noarchive\";i:0;s:13:\"shortlink_tag\";i:0;s:15:\"prev_next_posts\";i:0;s:12:\"sitemap_logo\";i:0;s:15:\"title_separator\";s:4:\"pipe\";s:23:\"homepage_og_description\";s:0:\"\";s:28:\"homepage_twitter_description\";s:0:\"\";s:17:\"homepage_og_title\";s:0:\"\";s:22:\"homepage_twitter_title\";s:0:\"\";s:16:\"title_strip_tags\";i:0;s:16:\"auto_description\";i:1;s:17:\"sitemaps_priority\";i:1;s:19:\"disabled_post_types\";a:0:{}s:18:\"noindex_post_types\";a:1:{s:10:\"attachment\";i:1;}s:19:\"nofollow_post_types\";a:1:{s:10:\"attachment\";i:0;}s:20:\"noarchive_post_types\";a:1:{s:10:\"attachment\";i:0;}s:19:\"sitemap_query_limit\";i:1200;s:13:\"ping_use_cron\";i:1;s:15:\"seo_bar_symbols\";i:0;s:25:\"advanced_query_protection\";i:0;s:24:\"set_copyright_directives\";i:0;s:20:\"oembed_remove_author\";i:0;s:14:\"oembed_scripts\";i:1;s:14:\"multi_og_image\";i:0;s:14:\"index_the_feed\";i:0;s:18:\"baidu_verification\";s:0:\"\";s:11:\"theme_color\";s:0:\"\";s:17:\"max_image_preview\";s:8:\"standard\";s:18:\"max_snippet_length\";i:0;s:17:\"max_video_preview\";i:0;s:19:\"disabled_taxonomies\";a:0:{}s:19:\"oembed_use_og_title\";i:0;s:23:\"oembed_use_social_image\";i:0;s:26:\"social_title_rem_additions\";i:0;s:15:\"sitemap_logo_id\";i:0;s:18:\"noindex_taxonomies\";a:1:{s:11:\"post_format\";i:1;}s:19:\"nofollow_taxonomies\";a:0:{}s:20:\"noarchive_taxonomies\";a:0:{}s:16:\"sitemap_logo_url\";s:0:\"\";s:23:\"ping_use_cron_prerender\";i:0;}','yes'),(151,'ihf-option-layout-type','responsive','yes'),(152,'widget_ihomefinderpropertiesgallery','a:3:{i:3;a:28:{s:11:\"galleryType\";s:15:\"featuredListing\";s:9:\"listingID\";s:0:\"\";s:4:\"name\";s:18:\"Lantern Properties\";s:15:\"propertiesShown\";s:1:\"5\";s:6:\"cityId\";s:0:\"\";s:12:\"propertyType\";s:0:\"\";s:3:\"bed\";s:0:\"\";s:4:\"bath\";s:0:\"\";s:8:\"minPrice\";s:0:\"\";s:8:\"maxPrice\";s:0:\"\";s:10:\"hotSheetId\";s:6:\"815189\";s:8:\"linkText\";s:8:\"View all\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}i:4;a:28:{s:11:\"galleryType\";s:15:\"featuredListing\";s:9:\"listingID\";s:0:\"\";s:4:\"name\";s:23:\"More Lantern Properties\";s:15:\"propertiesShown\";s:1:\"4\";s:6:\"cityId\";s:0:\"\";s:12:\"propertyType\";s:0:\"\";s:3:\"bed\";s:0:\"\";s:4:\"bath\";s:0:\"\";s:8:\"minPrice\";s:0:\"\";s:8:\"maxPrice\";s:0:\"\";s:10:\"hotSheetId\";s:6:\"815189\";s:8:\"linkText\";s:8:\"View all\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(153,'widget_ihomefinderquicksearchwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(154,'widget_ihomefindersearchbyaddresswidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(155,'widget_ihomefindersearchbylistingidwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(156,'widget_ihomefinderagentbiowidget','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:11:\"displayType\";s:6:\"narrow\";}}','yes'),(157,'widget_ihomefindersocialwidget','a:2:{i:3;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(158,'ihf_version_option','7.1.0','yes'),(159,'ihf-css-override','<style type=\"text/css\">\r\n\r\n#ihf-main-container .carousel-control {\r\n   height: auto;\r\n   background: none;\r\n   border: none;\r\n}\r\n#ihf-main-container .carousel-caption {\r\n    background: none;\r\n}\r\n#ihf-main-container .modal {\r\n    width: auto;\r\n    margin-left: 0;\r\n    background-color: transparent;\r\n    border: 0;\r\n}\r\n.ihf-results-links > a:nth-child(1) {\r\n    display: none;\r\n}\r\n#ihf-main-container .modal-dialog {\r\n    left: 0% !important;\r\n}\r\n\r\n</style>','yes'),(552453,'ihf-no-id','','yes'),(160,'ihf_css_override_migrated','1','yes'),(161,'ihf_database_cache_test','62b5117743e98','yes'),(181,'ihf-virtual-page-template-default','template/template-homepage.php','yes'),(182,'ihf-virtual-page-title-detail','{listingAddress}','yes'),(183,'ihf-virtual-page-template-detail','template/template-page.php','yes'),(184,'ihf-virtual-page-permalink-text-detail','homes-for-sale-details','yes'),(185,'ihf-virtual-page-meta-tags-detail','<meta property=\"og:image\" content=\"{listingPhotoUrl}\" />\r\n<meta property=\"og:image:width\" content=\"{listingPhotoWidth}\" />\r\n<meta property=\"og:image:height\" content=\"{listingPhotoHeight}\" />\r\n<meta property=\"og:description\" content=\"Lantern Realty and Development | {listingAddress}\" />\r\n<meta name=\"description\" content=\"Photos and Property Details for {listingAddress}. Get complete property information, maps, street view, schools, walk score and more. Request additional information, schedule a showing, save to your property organizer.\" />\r\n<meta name=\"keywords\" content=\"{listingAddress}, {listingCity} Real Estate, {listingCity} Property for Sale\" />\r\n<script>\r\n  fbq(\'track\', \'ViewContent\', {\r\n    content_type: \'{listingAddress}\',\r\n  });\r\n</script>','yes'),(186,'ihf-virtual-page-title-search','Property Search','yes'),(187,'ihf-virtual-page-template-search','','yes'),(188,'ihf-virtual-page-permalink-text-search','homes-for-sale-search','yes'),(189,'ihf-virtual-page-meta-tags-search','<meta name=\"description\" content=\"\" />\r\n<script>\r\n  fbq(\'track\', \'Search\');\r\n</script>','yes'),(190,'ihf-virtual-page-title-map-search','','yes'),(191,'ihf-virtual-page-template-map-search','','yes'),(192,'ihf-virtual-page-permalink-text-map-search','','yes'),(193,'ihf-virtual-page-meta-tags-map-search','','yes'),(194,'ihf-virtual-page-title-adv-search','','yes'),(195,'ihf-virtual-page-template-adv-search','','yes'),(196,'ihf-virtual-page-permalink-text-adv-search','','yes'),(197,'ihf-virtual-page-meta-tags-adv-search','','yes'),(198,'ihf-virtual-page-title-org-login','Organizer Login','yes'),(199,'ihf-virtual-page-template-org-login','template/template-page.php','yes'),(200,'ihf-virtual-page-permalink-text-org-login','property-organizer-login','yes'),(201,'ihf-virtual-page-meta-tags-org-login','<meta name=\"description\" content=\"\" />','yes'),(202,'ihf-virtual-page-title-email-updates','','yes'),(203,'ihf-virtual-page-template-email-updates','','yes'),(204,'ihf-virtual-page-permalink-text-email-updates','','yes'),(205,'ihf-virtual-page-meta-tags-email-updates','','yes'),(206,'ihf-virtual-page-title-featured','Featured Properties','yes'),(207,'ihf-virtual-page-template-featured','template/template-page.php','yes'),(208,'ihf-virtual-page-permalink-text-featured','homes-for-sale-featured','yes'),(209,'ihf-virtual-page-meta-tags-featured','<meta name=\"description\" content=\"\" />','yes'),(210,'ihf-virtual-page-title-hotsheet','{savedSearchName}: Listing Report','yes'),(211,'ihf-virtual-page-template-hotsheet','template/template-page.php','yes'),(212,'ihf-virtual-page-permalink-text-hotsheet','listing-report','yes'),(213,'ihf-virtual-page-meta-tags-hotsheet','<meta name=\"description\" content=\"{savedSearchDescription}\" />','yes'),(214,'ihf-virtual-page-title-hotsheet-open-home-report','{savedSearchName}: Open Home Report','yes'),(215,'ihf-virtual-page-template-hotsheet-open-home-report','template/template-page.php','yes'),(216,'ihf-virtual-page-permalink-text-hotsheet-open-home-report','open-home-report','yes'),(217,'ihf-virtual-page-meta-tags-hotsheet-open-home-report','<meta name=\"description\" content=\"{savedSearchDescription}\" />','yes'),(218,'ihf-virtual-page-title-hotsheet-market-report','{savedSearchName}: Market Report','yes'),(219,'ihf-virtual-page-template-hotsheet-market-report','template/template-page.php','yes'),(220,'ihf-virtual-page-permalink-text-hotsheet-market-report','market-report','yes'),(221,'ihf-virtual-page-meta-tags-hotsheet-market-report','<meta name=\"description\" content=\"{savedSearchDescription}\" />','yes'),(222,'ihf-virtual-page-title-hotsheet-list','Listing Reports','yes'),(223,'ihf-virtual-page-meta-tags-hotsheet-list','<meta name=\"description\" content=\"\" />','yes'),(224,'ihf-virtual-page-title-contact-form','Contact','yes'),(225,'ihf-virtual-page-template-contact-form','template/template-page.php','yes'),(226,'ihf-virtual-page-permalink-text-contact-form','contact-form','yes'),(227,'ihf-virtual-page-meta-tags-contact-form','<meta name=\"description\" content=\"\" />','yes'),(228,'ihf-virtual-page-title-valuation-form','Valuation Request Form','yes'),(229,'ihf-virtual-page-template-valuation-form','template/template-page.php','yes'),(230,'ihf-virtual-page-permalink-text-valuation-form','valuation-form','yes'),(231,'ihf-virtual-page-meta-tags-valuation-form','<meta name=\"description\" content=\"\" />','yes'),(232,'ihf-virtual-page-title-open-home-search-form','Open Home Search','yes'),(233,'ihf-virtual-page-template-open-home-search-form','template/template-page.php','yes'),(234,'ihf-virtual-page-open-home-search-form','open-home-search','yes'),(235,'ihf-virtual-page-meta-tags-open-home-search-form','<meta name=\"description\" content=\"\" />','yes'),(236,'ihf-virtual-page-title-supplemental-listing','Supplemental Listings','yes'),(237,'ihf-virtual-page-template-supplemental-listing','template/template-page.php','yes'),(238,'ihf-virtual-page-permalink-text-supplemental-listing','supplemental-listing','yes'),(239,'ihf-virtual-page-meta-tags-supplemental-listing','<meta name=\"description\" content=\"\" />','yes'),(240,'ihf-virtual-page-title-sold-featured','Sold Properties','yes'),(241,'ihf-virtual-page-template-sold-featured','template/template-page.php','yes'),(242,'ihf-virtual-page-permalink-text-sold-featured','sold-featured-listing','yes'),(243,'ihf-virtual-page-meta-tags-sold-featured','<meta name=\"description\" content=\"\" />','yes'),(244,'ihf-virtual-page-title-pending-featured','Pending Properties','yes'),(245,'ihf-virtual-page-template-pending-featured','template/template-page.php','yes'),(246,'ihf-virtual-page-permalink-text-pending-featured','pending-featured-listing','yes'),(247,'ihf-virtual-page-meta-tags-pending-featured','<meta name=\"description\" content=\"\" />','yes'),(248,'ihf-virtual-page-title-sold-detail','{listingAddress}','yes'),(249,'ihf-virtual-page-template-sold-detail','template/template-page.php','yes'),(250,'ihf-virtual-page-permalink-text-sold-detail','homes-for-sale-sold-details','yes'),(251,'ihf-virtual-page-meta-tags-sold-detail','<meta property=\"og:image\" content=\"{listingPhotoUrl}\" />\r\n<meta property=\"og:image:width\" content=\"{listingPhotoWidth}\" />\r\n<meta property=\"og:image:height\" content=\"{listingPhotoHeight}\" />\r\n<meta name=\"description\" content=\"Photos and Property Details for {listingAddress}. Get complete property information, maps, street view, schools, walk score and more. Request additional information, schedule a showing, save to your property organizer.\" />\r\n<meta name=\"keywords\" content=\"{listingAddress}, {listingCity} Real Estate, {listingCity} Property for Sale\" />','yes'),(252,'ihf-virtual-page-title-office-list','','yes'),(253,'ihf-virtual-page-template-office-list','','yes'),(254,'ihf-virtual-page-permalink-text-office-list','','yes'),(255,'ihf-virtual-page-meta-tags-office-list','','yes'),(256,'ihf-virtual-page-title-office-detail','','yes'),(257,'ihf-virtual-page-template-office-detail','','yes'),(258,'ihf-virtual-page-permalink-text-office-detail','','yes'),(259,'ihf-virtual-page-meta-tags-office-detail','','yes'),(260,'ihf-virtual-page-title-agent-list','','yes'),(261,'ihf-virtual-page-template-agent-list','','yes'),(262,'ihf-virtual-page-permalink-text-agent-list','','yes'),(263,'ihf-virtual-page-meta-tags-agent-list','','yes'),(264,'ihf-virtual-page-title-agent-detail','','yes'),(265,'ihf-virtual-page-template-agent-detail','','yes'),(266,'ihf-virtual-page-permalink-text-agent-detail','','yes'),(267,'ihf-virtual-page-meta-tags-agent-detail','','yes'),(268,'ihf-virtual-page-title-mls-portal-board-office-search','','yes'),(269,'ihf-virtual-page-template-mls-portal-board-office-search','','yes'),(270,'ihf-virtual-page-permalink-text-mls-portal-board-office-search','','yes'),(271,'ihf-virtual-page-meta-tags-mls-portal-board-office-search','','yes'),(272,'ihf-virtual-page-title-mls-portal-board-office-list','','yes'),(273,'ihf-virtual-page-template-mls-portal-board-office-list','','yes'),(274,'ihf-virtual-page-permalink-text-mls-portal-board-office-list','','yes'),(275,'ihf-virtual-page-meta-tags-mls-portal-board-office-list','','yes'),(276,'ihf-virtual-page-title-mls-portal-board-office-list-name-starts-with','','yes'),(277,'ihf-virtual-page-template-mls-portal-board-office-list-name-starts-with','','yes'),(278,'ihf-virtual-page-permalink-text-mls-portal-board-office-list-name-starts-with','','yes'),(279,'ihf-virtual-page-meta-tags-mls-portal-board-office-list-name-starts-with','','yes'),(280,'ihf-virtual-page-title-mls-portal-board-office-detail','','yes'),(281,'ihf-virtual-page-template-mls-portal-board-office-detail','','yes'),(282,'ihf-virtual-page-permalink-text-mls-portal-board-office-detail','','yes'),(283,'ihf-virtual-page-meta-tags-mls-portal-board-office-detail','','yes'),(284,'ihf-virtual-page-title-mls-portal-board-member-search','','yes'),(285,'ihf-virtual-page-template-mls-portal-board-member-search','','yes'),(286,'ihf-virtual-page-permalink-text-mls-portal-board-member-search','','yes'),(287,'ihf-virtual-page-meta-tags-mls-portal-board-member-search','','yes'),(288,'ihf-virtual-page-title-mls-portal-board-member-list','','yes'),(289,'ihf-virtual-page-template-mls-portal-board-member-list','','yes'),(290,'ihf-virtual-page-permalink-text-mls-portal-board-member-list','','yes'),(291,'ihf-virtual-page-meta-tags-mls-portal-board-member-list','','yes'),(292,'ihf-virtual-page-title-mls-portal-board-member-list-last-name-starts-with','','yes'),(293,'ihf-virtual-page-template-mls-portal-board-member-list-last-name-starts-with','','yes'),(294,'ihf-virtual-page-permalink-text-mls-portal-board-member-list-last-name-starts-with','','yes'),(295,'ihf-virtual-page-meta-tags-mls-portal-board-member-list-last-name-starts-with','','yes'),(296,'ihf-virtual-page-title-mls-portal-board-member-detail','','yes'),(297,'ihf-virtual-page-template-mls-portal-board-member-detail','','yes'),(298,'ihf-virtual-page-permalink-text-mls-portal-board-member-detail','','yes'),(299,'ihf-virtual-page-meta-tags-mls-portal-board-member-detail','','yes'),(164,'ihf_activation_token','5c4b308b-44c5-42b8-8569-fc4eac1f9bf7','yes'),(165,'ihf_authentication_token','57ba1f9b-a303-4b2e-90eb-792602d7dc93','yes'),(173,'widget_ihomefindercontactformwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(174,'widget_ihomefinderloginwidget','a:3:{i:3;a:18:{s:5:\"title\";s:18:\"Property Organizer\";s:5:\"style\";s:8:\"vertical\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}i:4;a:18:{s:5:\"title\";s:18:\"Property Organizer\";s:5:\"style\";s:8:\"vertical\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(175,'widget_ihomefindermoreinfowidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(176,'widget_ihomefindervaluationwidget','a:2:{i:3;a:18:{s:5:\"title\";s:20:\"Sell My Home Request\";s:5:\"style\";s:8:\"vertical\";s:19:\"idx-advanced-search\";b:1;s:16:\"idx-contact-form\";b:1;s:40:\"idx-property-organizer-edit-saved-search\";b:1;s:19:\"idx-featured-search\";b:1;s:10:\"idx-detail\";b:1;s:14:\"idx-map-search\";b:1;s:13:\"idx-hotsheets\";b:1;s:25:\"idx-open-home-search-form\";b:1;s:28:\"idx-property-organizer-login\";b:1;s:28:\"idx-pending-featured-listing\";b:1;s:10:\"idx-search\";b:1;s:11:\"idx-results\";b:1;s:25:\"idx-sold-featured-listing\";b:1;s:15:\"idx-sold-detail\";b:1;s:24:\"idx-supplemental-listing\";b:1;s:18:\"idx-valuation-form\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(177,'widget_ihomefinderhotsheetlistwidget','a:2:{i:3;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(178,'widget_ihomefinderemailsignupformwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(170,'ihf_permissions','O:8:\"stdClass\":32:{s:18:\"featuredProperties\";s:4:\"true\";s:9:\"organizer\";s:4:\"true\";s:12:\"emailUpdates\";s:4:\"true\";s:11:\"saveListing\";s:4:\"true\";s:10:\"saveSearch\";s:4:\"true\";s:8:\"hotSheet\";s:4:\"true\";s:6:\"office\";s:5:\"false\";s:8:\"agentBio\";s:5:\"false\";s:11:\"soldPending\";s:4:\"true\";s:9:\"valuation\";s:4:\"true\";s:11:\"contactForm\";s:4:\"true\";s:20:\"supplementalListings\";s:4:\"true\";s:14:\"communityPages\";s:4:\"true\";s:12:\"seoCityLinks\";s:4:\"true\";s:9:\"mapSearch\";s:4:\"true\";s:11:\"basicSearch\";s:4:\"true\";s:14:\"advancedSearch\";s:4:\"true\";s:14:\"openHomeSearch\";s:4:\"true\";s:14:\"listingResults\";s:4:\"true\";s:14:\"listingDetails\";s:4:\"true\";s:14:\"pendingAccount\";s:5:\"false\";s:18:\"activeTrialAccount\";s:5:\"false\";s:22:\"automatedFeaturedSolds\";s:4:\"true\";s:21:\"hotSheetListingReport\";s:4:\"true\";s:22:\"hotSheetOpenHomeReport\";s:4:\"true\";s:20:\"hotSheetMarketReport\";s:4:\"true\";s:21:\"soldListingsInWidgets\";s:4:\"true\";s:10:\"mlsDisplay\";s:5:\"false\";s:17:\"mlsAgentDirectory\";s:5:\"false\";s:12:\"eurekaSearch\";s:4:\"true\";s:13:\"kestrelDetail\";s:5:\"false\";s:10:\"kestrelAll\";s:5:\"false\";}','yes'),(171,'ihf_links_created','true','yes'),(306,'widget_houzez_mortgage_calculator','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(307,'widget_houzez_featured_properties','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(308,'widget_houzez_properties','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(309,'widget_houzez_property_taxonomies','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(310,'widget_houzez_about_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(311,'widget_houzez_contact','a:2:{i:2;a:7:{s:5:\"title\";s:23:\"Contact A Lantern Agent\";s:10:\"about_text\";s:0:\"\";s:5:\"phone\";s:12:\"704-298-0087\";s:3:\"fax\";s:0:\"\";s:5:\"email\";s:26:\"contact@lantern-realty.com\";s:7:\"address\";s:32:\"Kannapolis, North Carolina 28083\";s:8:\"more_url\";s:40:\"https://lantern-realty.com/contact-form/\";}s:12:\"_multiwidget\";i:1;}','yes'),(312,'widget_houzez_latest_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(313,'widget_houzez_code_banner','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(314,'widget_houzez_facebook','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(315,'widget_houzez_flickr_feeds','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(316,'widget_houzez_image_banner_300_250','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(317,'widget_houzez_instagram','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(318,'widget_houzez_twitter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(319,'widget_houzez_properties_viewed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(320,'widget_houzez_agent_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(321,'widget_houzez_agency_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(322,'theme_mods_houzez','a:4:{s:18:\"custom_css_post_id\";i:-1;s:14:\"houzez_options\";a:29:{s:12:\"header_style\";s:1:\"2\";s:14:\"header_1_width\";s:9:\"container\";s:16:\"main-menu-sticky\";s:1:\"1\";s:14:\"header_4_width\";s:9:\"container\";s:18:\"main-search-enable\";s:1:\"0\";s:22:\"create_lisiting_enable\";s:1:\"0\";s:7:\"top_bar\";s:1:\"1\";s:12:\"top_bar_left\";s:12:\"social_icons\";s:13:\"top_bar_right\";s:8:\"menu_bar\";s:13:\"top_bar_phone\";s:12:\"123-456-7890\";s:13:\"top_bar_email\";s:19:\"contact@lantern.com\";s:13:\"user_as_agent\";s:2:\"no\";s:9:\"minify_js\";s:1:\"1\";s:8:\"jpeg_100\";s:1:\"1\";s:20:\"styling_headers_type\";s:8:\"header-1\";s:11:\"header_3_bg\";s:7:\"#ffffff\";s:11:\"header_1_bg\";s:7:\"#004272\";s:16:\"header_3_bg_menu\";s:0:\"\";s:11:\"header_2_bg\";s:7:\"#004272\";s:16:\"hd2_contact_info\";s:1:\"1\";s:13:\"social-header\";s:1:\"0\";s:9:\"hd3_phone\";s:14:\"(980) 858-2074\";s:17:\"hd2_contact_phone\";s:14:\"(980) 858-2074\";s:15:\"hd2_timing_info\";s:1:\"0\";s:16:\"hd2_timing_hours\";s:16:\"Agents Available\";s:15:\"hd2_timing_days\";s:14:\"Contact Us Now\";s:16:\"hd2_address_info\";s:1:\"1\";s:17:\"hd2_address_line2\";s:21:\"And Surrounding Areas\";s:17:\"hd2_address_line1\";s:26:\"Serving Kannapolis/Concord\";}s:18:\"nav_menu_locations\";a:6:{s:9:\"main-menu\";i:8;s:11:\"footer-menu\";i:5;s:8:\"top-menu\";i:0;s:14:\"main-menu-left\";i:0;s:15:\"main-menu-right\";i:0;s:16:\"mobile-menu-hed6\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1600618998;s:4:\"data\";a:17:{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:11:\"idx-sidebar\";a:7:{i:0;s:24:\"ihomefinderloginwidget-2\";i:1;s:28:\"ihomefindervaluationwidget-2\";i:2;s:27:\"ihomefindermoreinfowidget-2\";i:3;s:30:\"ihomefinderpropertiesgallery-2\";i:4;s:13:\"media_image-6\";i:5;s:13:\"media_image-7\";i:6;s:14:\"media_image-11\";}s:19:\"wp_inactive_widgets\";a:3:{i:0;s:25:\"ihomefindersocialwidget-3\";i:1;s:31:\"ihomefinderhotsheetlistwidget-3\";i:2;s:27:\"ihomefinderagentbiowidget-3\";}s:15:\"default-sidebar\";a:0:{}s:16:\"property-listing\";a:0:{}s:14:\"search-sidebar\";a:0:{}s:15:\"single-property\";a:0:{}s:12:\"page-sidebar\";a:3:{i:0;s:23:\"a2a_share_save_widget-2\";i:1;s:24:\"ihomefinderloginwidget-3\";i:2;s:30:\"ihomefinderpropertiesgallery-3\";}s:14:\"agency-sidebar\";a:0:{}s:13:\"agent-sidebar\";a:4:{i:0;s:28:\"ihomefindervaluationwidget-3\";i:1;s:13:\"media_image-8\";i:2;s:13:\"media_image-9\";i:3;s:14:\"media_image-10\";}s:23:\"hz-custom-widget-area-1\";a:0:{}s:23:\"hz-custom-widget-area-2\";a:0:{}s:23:\"hz-custom-widget-area-3\";a:0:{}s:16:\"footer-sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:16:\"footer-sidebar-2\";a:1:{i:0;s:16:\"houzez_contact-2\";}s:16:\"footer-sidebar-3\";a:1:{i:0;s:13:\"media_image-3\";}s:16:\"footer-sidebar-4\";a:1:{i:0;s:13:\"media_image-4\";}}}}','yes'),(326,'current_theme','Houzez','yes'),(327,'theme_switched','','yes'),(328,'theme_switched_via_customizer','','yes'),(329,'customize_stashed_theme_mods','a:0:{}','no'),(331,'houzez_1_6_db','1','yes'),(1258,'lidd_mc_options','a:34:{s:18:\"compounding_period\";i:12;s:8:\"currency\";s:1:\"$\";s:13:\"currency_code\";N;s:15:\"currency_format\";s:25:\"{currency}{amount} {code}\";s:13:\"number_format\";i:6;s:20:\"minimum_total_amount\";i:0;s:20:\"down_payment_visible\";i:1;s:18:\"total_amount_value\";d:300000;s:18:\"down_payment_value\";d:60000;s:19:\"interest_rate_value\";d:5;s:25:\"amortization_period_value\";i:30;s:21:\"zero_percent_interest\";i:0;s:25:\"amortization_period_units\";i:0;s:14:\"payment_period\";i:12;s:5:\"theme\";s:5:\"light\";s:12:\"select_style\";i:1;s:14:\"select_pointer\";N;s:10:\"css_layout\";i:1;s:6:\"popup \";i:0;s:7:\"summary\";i:1;s:16:\"summary_interest\";i:1;s:19:\"summary_downpayment\";i:1;s:18:\"total_amount_label\";s:16:\"Total Amount ($)\";s:18:\"down_payment_label\";s:16:\"Down Payment ($)\";s:19:\"interest_rate_label\";s:17:\"Interest Rate (%)\";s:25:\"amortization_period_label\";s:27:\"Amortization Period (years)\";s:20:\"payment_period_label\";s:14:\"Payment Period\";s:12:\"submit_label\";s:9:\"Calculate\";s:18:\"total_amount_class\";N;s:18:\"down_payment_class\";N;s:19:\"interest_rate_class\";N;s:25:\"amortization_period_class\";N;s:20:\"payment_period_class\";N;s:12:\"submit_class\";N;}','yes'),(1870,'the_seo_framework_upgraded_db_version','4200','yes'),(1872,'_transient_tsf_tdir_1_1','1','yes'),(1875,'revslider-valid-notice','false','yes'),(1264,'srp_general_options','a:1:{s:7:\"content\";a:3:{s:11:\"srp_gre_css\";s:2:\"on\";s:16:\"srp_profile_tabs\";s:2:\"on\";s:16:\"srp_profile_ajax\";s:2:\"on\";}}','yes'),(1265,'srp_ext_gre_options','a:2:{s:7:\"content\";a:15:{s:3:\"map\";s:2:\"on\";s:7:\"schools\";s:2:\"on\";s:11:\"altos_stats\";s:2:\"on\";s:9:\"financial\";s:2:\"on\";s:4:\"yelp\";s:2:\"on\";s:9:\"walkscore\";s:2:\"on\";s:13:\"mortgage_calc\";s:2:\"on\";s:17:\"closing_estimator\";s:2:\"on\";s:18:\"affordability_calc\";s:2:\"on\";s:11:\"description\";s:2:\"on\";s:6:\"photos\";s:2:\"on\";s:5:\"video\";s:2:\"on\";s:8:\"panorama\";s:2:\"on\";s:9:\"downloads\";s:2:\"on\";s:9:\"community\";s:2:\"on\";}s:4:\"tabs\";a:7:{s:3:\"map\";a:2:{s:7:\"tabname\";s:3:\"Map\";s:7:\"heading\";s:12:\"Location Map\";}s:7:\"schools\";a:2:{s:7:\"tabname\";s:7:\"Schools\";s:7:\"heading\";s:13:\"Local Schools\";}s:12:\"trulia_stats\";a:2:{s:7:\"tabname\";s:12:\"Market Stats\";s:7:\"heading\";s:17:\"Market Statistics\";}s:11:\"altos_stats\";a:2:{s:7:\"tabname\";s:12:\"Market Stats\";s:7:\"heading\";s:17:\"Market Statistics\";}s:9:\"financial\";a:2:{s:7:\"tabname\";s:9:\"Financing\";s:7:\"heading\";s:15:\"Financial Tools\";}s:4:\"yelp\";a:2:{s:7:\"tabname\";s:17:\"Nearby Businesses\";s:7:\"heading\";s:30:\"Businesses in the Neighborhood\";}s:9:\"walkscore\";a:2:{s:7:\"tabname\";s:11:\"Walkability\";s:7:\"heading\";s:31:\"Walkability of the Neighborhood\";}}}','yes'),(1266,'srp_mortgage_calc_options','a:16:{s:20:\"annual_interest_rate\";i:6;s:13:\"mortgage_term\";i:30;s:17:\"property_tax_rate\";i:1;s:19:\"home_insurance_rate\";d:0.5;s:3:\"pmi\";d:0.5;s:15:\"origination_fee\";i:1;s:11:\"lender_fees\";i:600;s:17:\"credit_report_fee\";i:50;s:9:\"appraisal\";i:300;s:15:\"title_insurance\";i:800;s:16:\"reconveyance_fee\";i:75;s:13:\"recording_fee\";i:45;s:16:\"wire_courier_fee\";i:55;s:15:\"endorsement_fee\";i:75;s:17:\"title_closing_fee\";i:125;s:18:\"title_doc_prep_fee\";i:30;}','yes'),(1267,'srp_walkscore_api_key','YOUR-WSID-HERE','yes'),(1270,'widget_srp_closingcosts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(640,'wpforms_activated','a:1:{s:4:\"lite\";i:1534894037;}','yes'),(693,'revslider-connection','1','yes'),(694,'revslider-latest-version','6.5.25','yes'),(695,'revslider-stable-version','4.2.0','yes'),(696,'revslider-notices','a:2:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:545:\"<div style=\"display: block; background: #fff;text-align: center; \nheight: 300px;\"><a \nhref=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium2\"\n target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: \ncover; background-size: cover; opacity: 1; width: 920px; height: 300px; \ndisplay: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" \npreload=\"auto\"><source \nsrc=\"//updates.themepunch-ext-a.tools//banners/videobanner_premium2.mp4\" \ntype=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6511-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"1.0.0\";s:4:\"text\";s:407:\"<div style=\"display: block; background:#fff;text-align: center; \nheight: 250px;\"><a \nhref=\"https://www.sliderrevolution.com/wordpress-hosting/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getwphosting\"\n target=\"_blank\" rel=\"noopener\"><img style=\"width: 960px; \nheight: 250px; display: inline-block;\" \n src=\"//updates.themepunch-ext-a.tools//banners/rs60/wphostingadmin.jpg\"></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','yes'),(697,'revslider-dashboard','a:0:{}','yes'),(698,'revslider-addons','O:8:\"stdClass\":31:{s:25:\"revslider-particles-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"372\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"2.3.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"351\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:6:\"6.2.50\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"2.2.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2021-01-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"370\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"2.1.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"363\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.4.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2021-03-17\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"371\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:6:\"2.0.10\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"358\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2021-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"359\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"2.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2021-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"77\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"2.1.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2020-06-14\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"355\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:6:\"6.4.10\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.png\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2021-04-29\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"364\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2021-03-24\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"64\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2021-01-05\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"377\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"2.1.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"361\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"2.2.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2021-02-24\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"374\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:6:\"6.4.10\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2021-04-29\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"310\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2021-02-24\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"353\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"57\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2020-02-20\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"308\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"2.2.3\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2021-01-15\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"376\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2020-02-19\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"73\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"59\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2022-01-31\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"375\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:6:\"6.4.10\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2021-04-30\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"373\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.4.8\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2021-04-16\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"71\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2020-01-01\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}}','yes'),(1051,'ihf-email-display-header-option','','yes'),(1052,'ihf-email-display-footer-option','','yes'),(1053,'ihf-email-photo-option','','yes'),(1054,'ihf-email-logo-option','http://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-e1534726093274.jpg','yes'),(1055,'ihf-email-name-option','Lantern Realty and Development','yes'),(1056,'ihf-email-company-option','','yes'),(1057,'ihf-email-address-line1-option','','yes'),(1058,'ihf-email-address-line2-option','','yes'),(1059,'ihf-email-phone-option','980-858-2074','yes'),(1060,'ihf-email-display-type-option','ihf-email-display-type-custom-images','yes'),(1546538,'agent_category_children','a:0:{}','yes'),(1097,'ihf-social-facebook-url-option','lanternrealty','yes'),(1098,'ihf-social-linkedin-url-option','','yes'),(1099,'ihf-social-twitter-url-option','','yes'),(1100,'ihf-social-pinterest-url','','yes'),(1101,'ihf-social-instagram-url','','yes'),(1102,'ihf-social-google-plus-url','','yes'),(1103,'ihf-social-youtube-url','','yes'),(1104,'ihf-social-yelp-url','','yes'),(1063,'ihf-seo-city-links-settings','a:12:{i:0;a:5:{s:23:\"ihf-seo-city-links-text\";s:9:\"Charlotte\";s:27:\"ihf-seo-city-links-city-zip\";s:9:\"Charlotte\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}i:1;a:5:{s:23:\"ihf-seo-city-links-text\";s:11:\"China Grove\";s:27:\"ihf-seo-city-links-city-zip\";s:11:\"China Grove\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:2;a:5:{s:23:\"ihf-seo-city-links-text\";s:7:\"Concord\";s:27:\"ihf-seo-city-links-city-zip\";s:7:\"Concord\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:3;a:5:{s:23:\"ihf-seo-city-links-text\";s:9:\"Cornelius\";s:27:\"ihf-seo-city-links-city-zip\";s:9:\"Cornelius\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}i:4;a:5:{s:27:\"ihf-seo-city-links-city-zip\";s:9:\"Gold Hill\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"5000000\";s:23:\"ihf-seo-city-links-text\";s:9:\"Gold Hill\";}i:5;a:5:{s:23:\"ihf-seo-city-links-text\";s:12:\"Huntersville\";s:27:\"ihf-seo-city-links-city-zip\";s:12:\"Huntersville\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}i:6;a:5:{s:23:\"ihf-seo-city-links-text\";s:10:\"Kannapolis\";s:27:\"ihf-seo-city-links-city-zip\";s:10:\"Kannapolis\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:7;a:5:{s:23:\"ihf-seo-city-links-text\";s:6:\"Landis\";s:27:\"ihf-seo-city-links-city-zip\";s:6:\"Landis\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:8;a:5:{s:23:\"ihf-seo-city-links-text\";s:11:\"Mooresville\";s:27:\"ihf-seo-city-links-city-zip\";s:11:\"MOORESVILLE\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}i:9;a:5:{s:23:\"ihf-seo-city-links-text\";s:14:\"Mount Pleasant\";s:27:\"ihf-seo-city-links-city-zip\";s:14:\"Mount Pleasant\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"5000000\";}i:10;a:5:{s:23:\"ihf-seo-city-links-text\";s:8:\"Rockwell\";s:27:\"ihf-seo-city-links-city-zip\";s:8:\"Rockwell\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"10000\";s:28:\"ihf-seo-city-links-max-price\";s:7:\"1000000\";}i:11;a:5:{s:23:\"ihf-seo-city-links-text\";s:9:\"Salisbury\";s:27:\"ihf-seo-city-links-city-zip\";s:9:\"Salisbury\";s:32:\"ihf-seo-city-links-property-type\";s:7:\"SFR,CND\";s:28:\"ihf-seo-city-links-min-price\";s:5:\"50000\";s:28:\"ihf-seo-city-links-max-price\";s:8:\"10000000\";}}','yes'),(1064,'ihf-seo-city-link-width','80','yes'),(978,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(421015,'fb50644f7_elements','a:0:{}','yes'),(421016,'fb50644f7_custom_js','','yes'),(421017,'fb50644f7_updated_at','1606787969','yes'),(1347,'htcc_plugin_details','a:1:{s:7:\"version\";s:3:\"3.1\";}','yes'),(1348,'htcc_options','a:14:{s:10:\"fb_page_id\";s:15:\"182173195955653\";s:9:\"fb_app_id\";s:15:\"268564130427471\";s:10:\"log_events\";s:3:\"yes\";s:8:\"fb_color\";s:7:\"#1e73be\";s:17:\"fb_greeting_login\";s:29:\"Chat with a Lantern Agent Now\";s:18:\"fb_greeting_logout\";s:50:\"Login to Facebook to Chat with a Lantern Agent Now\";s:23:\"greeting_dialog_display\";s:4:\"fade\";s:21:\"greeting_dialog_delay\";s:1:\"5\";s:11:\"fb_sdk_lang\";s:5:\"en_US\";s:3:\"ref\";s:0:\"\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:9:\"shortcode\";s:7:\"chatbot\";s:9:\"minimized\";s:0:\"\";}','yes'),(1359,'WPLANG','','yes'),(1360,'new_admin_email','ckeziah127@gmail.com','yes'),(1726,'monitor_receive_notifications','1','yes'),(373,'mc4wp_version','4.8.7','yes'),(374,'houzez_options','a:1082:{s:8:\"last_tab\";s:2:\"12\";s:15:\"site_breadcrumb\";s:1:\"1\";s:17:\"phone_number_full\";s:1:\"1\";s:15:\"gallery_caption\";s:1:\"0\";s:16:\"lightbox_caption\";s:1:\"0\";s:20:\"houzez_date_language\";s:0:\"\";s:18:\"users_admin_access\";s:1:\"0\";s:23:\"measurement_unit_global\";s:1:\"0\";s:16:\"measurement_unit\";s:4:\"sqft\";s:26:\"measurement_unit_sqft_text\";s:4:\"sqft\";s:34:\"measurement_unit_square_meter_text\";s:3:\"m²\";s:14:\"sticky_sidebar\";a:7:{s:15:\"default_sidebar\";s:0:\"\";s:17:\"property_listings\";s:0:\"\";s:15:\"single_property\";s:0:\"\";s:13:\"agent_sidebar\";s:0:\"\";s:14:\"agency_sidebar\";s:0:\"\";s:14:\"search_sidebar\";s:0:\"\";s:12:\"page_sidebar\";s:0:\"\";}s:17:\"cl_featured_label\";s:8:\"Featured\";s:11:\"cl_property\";s:8:\"Property\";s:13:\"cl_properties\";s:10:\"Properties\";s:11:\"cl_favorite\";s:9:\"Favourite\";s:10:\"cl_preview\";s:7:\"Preview\";s:14:\"cl_add_compare\";s:14:\"Add to Compare\";s:17:\"cl_remove_compare\";s:19:\"Remove from Compare\";s:7:\"cl_none\";s:4:\"None\";s:9:\"cl_select\";s:6:\"Select\";s:14:\"cl_only_digits\";s:11:\"Only digits\";s:10:\"cl_example\";s:11:\"For example\";s:7:\"cl_hide\";s:4:\"Hide\";s:7:\"cl_show\";s:4:\"Show\";s:6:\"cl_yes\";s:3:\"Yes\";s:5:\"cl_no\";s:2:\"No\";s:5:\"cl_or\";s:2:\"OR\";s:13:\"cl_select_all\";s:10:\"Select All\";s:15:\"cl_deselect_all\";s:12:\"Deselect All\";s:21:\"cl_no_results_matched\";s:18:\"No results matched\";s:17:\"srh_item_selected\";s:14:\"items selected\";s:7:\"srh_any\";s:3:\"Any\";s:11:\"srh_keyword\";s:16:\"Enter Keyword...\";s:11:\"srh_address\";s:50:\"Enter an address, town, street, zip or property ID\";s:7:\"srh_csa\";s:26:\"Search City, State or Area\";s:12:\"srh_location\";s:8:\"Location\";s:10:\"srh_radius\";s:6:\"Radius\";s:8:\"srh_type\";s:4:\"Type\";s:9:\"srh_types\";s:14:\"types selected\";s:10:\"srh_status\";s:6:\"Status\";s:12:\"srh_statuses\";s:15:\"status selected\";s:9:\"srh_label\";s:5:\"Label\";s:10:\"srh_labels\";s:6:\"Labels\";s:14:\"srh_all_status\";s:10:\"All Status\";s:12:\"srh_bedrooms\";s:8:\"Bedrooms\";s:10:\"srh_studio\";s:6:\"Studio\";s:9:\"srh_rooms\";s:5:\"Rooms\";s:13:\"srh_bathrooms\";s:9:\"Bathrooms\";s:8:\"srh_beds\";s:4:\"Beds\";s:9:\"srh_baths\";s:5:\"Baths\";s:12:\"srh_min_area\";s:9:\"Min. Area\";s:12:\"srh_max_area\";s:9:\"Max. Area\";s:17:\"srh_min_land_area\";s:14:\"Min. Land Area\";s:17:\"srh_max_land_area\";s:14:\"Max. Land Area\";s:13:\"srh_min_price\";s:10:\"Min. Price\";s:13:\"srh_max_price\";s:10:\"Max. Price\";s:9:\"srh_price\";s:5:\"Price\";s:15:\"srh_price_range\";s:11:\"Price Range\";s:8:\"srh_from\";s:4:\"From\";s:6:\"srh_to\";s:2:\"To\";s:11:\"srh_prop_id\";s:11:\"Property ID\";s:13:\"srh_countries\";s:13:\"All Countries\";s:10:\"srh_states\";s:10:\"All States\";s:10:\"srh_cities\";s:10:\"All Cities\";s:9:\"srh_areas\";s:9:\"All Areas\";s:10:\"srh_areass\";s:14:\"areas selected\";s:10:\"srh_garage\";s:6:\"Garage\";s:14:\"srh_year_built\";s:10:\"Year Built\";s:12:\"srh_currency\";s:8:\"Currency\";s:18:\"srh_other_features\";s:14:\"Other Features\";s:11:\"srh_btn_adv\";s:8:\"Advanced\";s:14:\"srh_btn_search\";s:6:\"Search\";s:10:\"srh_btn_go\";s:2:\"Go\";s:19:\"srh_btn_save_search\";s:11:\"Save Search\";s:14:\"srh_dock_title\";s:15:\"Advanced Search\";s:16:\"srh_mobile_title\";s:6:\"Search\";s:12:\"srh_btn_more\";s:12:\"More Options\";s:9:\"srh_clear\";s:5:\"Clear\";s:9:\"srh_apply\";s:5:\"Apply\";s:11:\"glc_bedroom\";s:7:\"Bedroom\";s:12:\"glc_bedrooms\";s:8:\"Bedrooms\";s:12:\"glc_bathroom\";s:8:\"Bathroom\";s:13:\"glc_bathrooms\";s:9:\"Bathrooms\";s:7:\"glc_bed\";s:3:\"Bed\";s:8:\"glc_beds\";s:4:\"Beds\";s:8:\"glc_room\";s:4:\"Room\";s:9:\"glc_rooms\";s:5:\"Rooms\";s:8:\"glc_bath\";s:4:\"Bath\";s:9:\"glc_baths\";s:5:\"Baths\";s:10:\"glc_garage\";s:6:\"Garage\";s:11:\"glc_garages\";s:7:\"Garages\";s:14:\"glc_year_built\";s:10:\"Year Built\";s:6:\"glc_id\";s:2:\"ID\";s:14:\"glc_listing_id\";s:10:\"Listing ID\";s:14:\"glc_detail_btn\";s:7:\"Details\";s:12:\"sps_overview\";s:8:\"Overview\";s:15:\"sps_description\";s:11:\"Description\";s:13:\"sps_documents\";s:18:\"Property Documents\";s:11:\"sps_details\";s:7:\"Details\";s:22:\"sps_additional_details\";s:18:\"Additional details\";s:11:\"sps_address\";s:7:\"Address\";s:12:\"sps_features\";s:8:\"Features\";s:9:\"sps_video\";s:5:\"Video\";s:16:\"sps_virtual_tour\";s:18:\"360° Virtual Tour\";s:16:\"sps_sub_listings\";s:12:\"Sub listings\";s:16:\"sps_energy_class\";s:12:\"Energy Class\";s:15:\"sps_floor_plans\";s:11:\"Floor Plans\";s:14:\"sps_calculator\";s:19:\"Mortgage Calculator\";s:13:\"sps_walkscore\";s:9:\"Walkscore\";s:10:\"sps_nearby\";s:14:\"What\'s Nearby?\";s:17:\"sps_schedule_tour\";s:15:\"Schedule a Tour\";s:11:\"sps_contact\";s:7:\"Contact\";s:16:\"sps_contact_info\";s:19:\"Contact Information\";s:13:\"sps_your_info\";s:16:\"Your information\";s:19:\"sps_propperty_enqry\";s:27:\"Enquire About This Property\";s:11:\"sps_reviews\";s:7:\"Reviews\";s:20:\"sps_similar_listings\";s:16:\"Similar Listings\";s:11:\"spl_prop_id\";s:11:\"Property ID\";s:9:\"spl_price\";s:5:\"Price\";s:13:\"spl_prop_type\";s:13:\"Property Type\";s:15:\"spl_prop_status\";s:15:\"Property Status\";s:13:\"spl_prop_size\";s:13:\"Property Size\";s:8:\"spl_land\";s:9:\"Land Area\";s:8:\"spl_room\";s:4:\"Room\";s:9:\"spl_rooms\";s:5:\"Rooms\";s:11:\"spl_bedroom\";s:7:\"Bedroom\";s:12:\"spl_bedrooms\";s:8:\"Bedrooms\";s:12:\"spl_bathroom\";s:8:\"Bathroom\";s:13:\"spl_bathrooms\";s:9:\"Bathrooms\";s:10:\"spl_garage\";s:6:\"Garage\";s:11:\"spl_garages\";s:7:\"Garages\";s:15:\"spl_garage_size\";s:11:\"Garage Size\";s:14:\"spl_year_built\";s:10:\"Year Built\";s:7:\"spl_lot\";s:3:\"Lot\";s:7:\"spl_ogm\";s:19:\"Open on Google Maps\";s:11:\"spl_address\";s:7:\"Address\";s:7:\"spl_zip\";s:15:\"Zip/Postal Code\";s:11:\"spl_country\";s:7:\"Country\";s:9:\"spl_state\";s:12:\"State/county\";s:8:\"spl_city\";s:4:\"City\";s:8:\"spl_area\";s:4:\"Area\";s:12:\"spl_con_name\";s:4:\"Name\";s:17:\"spl_con_name_plac\";s:15:\"Enter your name\";s:13:\"spl_con_phone\";s:5:\"Phone\";s:18:\"spl_con_phone_plac\";s:16:\"Enter your Phone\";s:13:\"spl_con_email\";s:5:\"Email\";s:18:\"spl_con_email_plac\";s:16:\"Enter your email\";s:15:\"spl_con_message\";s:7:\"Message\";s:20:\"spl_con_message_plac\";s:18:\"Enter your Message\";s:18:\"spl_con_interested\";s:25:\"Hello, I am interested in\";s:16:\"spl_con_usertype\";s:5:\"I\'m a\";s:14:\"spl_con_select\";s:6:\"Select\";s:13:\"spl_con_buyer\";s:11:\"I\'m a buyer\";s:15:\"spl_con_tennant\";s:13:\"I\'m a tennant\";s:13:\"spl_con_agent\";s:12:\"I\'m an agent\";s:13:\"spl_con_other\";s:5:\"Other\";s:21:\"spl_con_view_listings\";s:13:\"View Listings\";s:17:\"spl_con_tour_type\";s:9:\"Tour Type\";s:17:\"spl_con_in_person\";s:9:\"In Person\";s:18:\"spl_con_video_chat\";s:10:\"Video Chat\";s:12:\"spl_con_date\";s:4:\"Date\";s:17:\"spl_con_date_plac\";s:16:\"Select tour date\";s:12:\"spl_con_time\";s:4:\"Time\";s:12:\"spl_btn_send\";s:12:\"Send Message\";s:12:\"spl_btn_call\";s:4:\"Call\";s:15:\"spl_btn_message\";s:12:\"Send Message\";s:20:\"spl_btn_request_info\";s:19:\"Request Information\";s:16:\"spl_btn_tour_sch\";s:21:\"Submit a Tour Request\";s:13:\"spl_sub_agree\";s:34:\"By submitting this form I agree to\";s:8:\"spl_term\";s:12:\"Terms of Use\";s:28:\"agent_forms_terms_validation\";s:26:\"Please accept terms of use\";s:17:\"spl_energetic_cls\";s:15:\"Energetic class\";s:16:\"spl_energy_index\";s:31:\"Global Energy Performance Index\";s:22:\"spl_energy_renew_index\";s:34:\"Renewable energy performance index\";s:28:\"spl_energy_build_performance\";s:34:\"Energy performance of the building\";s:21:\"spl_energy_ecp_rating\";s:18:\"EPC Current Rating\";s:16:\"spl_energy_ecp_p\";s:20:\"EPC Potential Rating\";s:14:\"spl_energy_cls\";s:12:\"Energy class\";s:18:\"spc_principal_ints\";s:20:\"Principal & Interest\";s:12:\"spc_prop_tax\";s:12:\"Property Tax\";s:6:\"spc_hi\";s:14:\"Home Insurance\";s:7:\"spc_pmi\";s:3:\"PMI\";s:13:\"spc_total_amt\";s:12:\"Total Amount\";s:16:\"spc_down_payment\";s:12:\"Down Payment\";s:6:\"spc_ir\";s:13:\"Interest Rate\";s:13:\"spc_load_term\";s:18:\"Loan Terms (Years)\";s:11:\"spc_monthly\";s:7:\"Monthly\";s:11:\"spc_btn_cal\";s:9:\"Calculate\";s:19:\"fal_submit_property\";s:15:\"Submit Property\";s:14:\"fal_save_draft\";s:13:\"Save as Draft\";s:16:\"fal_save_changes\";s:12:\"Save Changes\";s:17:\"fal_view_property\";s:13:\"View Property\";s:10:\"fal_cancel\";s:6:\"Cancel\";s:8:\"fal_back\";s:4:\"Back\";s:8:\"fal_next\";s:4:\"Next\";s:15:\"cls_description\";s:11:\"Description\";s:21:\"cls_description_price\";s:19:\"Description & Price\";s:9:\"cls_price\";s:5:\"Price\";s:9:\"cls_media\";s:5:\"Media\";s:13:\"cls_documents\";s:18:\"Property Documents\";s:11:\"cls_details\";s:7:\"Details\";s:17:\"cls_private_notes\";s:12:\"Private Note\";s:22:\"cls_additional_details\";s:18:\"Additional details\";s:11:\"cls_address\";s:7:\"Address\";s:12:\"cls_location\";s:8:\"Location\";s:7:\"cls_map\";s:3:\"Map\";s:12:\"cls_features\";s:8:\"Features\";s:9:\"cls_video\";s:5:\"Video\";s:16:\"cls_virtual_tour\";s:18:\"360° Virtual Tour\";s:16:\"cls_sub_listings\";s:12:\"Sub listings\";s:16:\"cls_energy_class\";s:12:\"Energy Class\";s:15:\"cls_floor_plans\";s:11:\"Floor Plans\";s:13:\"cls_walkscore\";s:9:\"Walkscore\";s:16:\"cls_contact_info\";s:19:\"Contact Information\";s:15:\"cls_information\";s:11:\"Information\";s:12:\"cls_settings\";s:17:\"Property Settings\";s:10:\"cls_slider\";s:6:\"Slider\";s:10:\"cls_layout\";s:6:\"Layout\";s:10:\"cls_rental\";s:14:\"Rental Details\";s:8:\"cls_gdpr\";s:16:\"GDPR Agreement *\";s:13:\"cl_prop_title\";s:14:\"Property Title\";s:18:\"cl_prop_title_plac\";s:25:\"Enter your property title\";s:10:\"cl_content\";s:7:\"Content\";s:12:\"cl_prop_type\";s:4:\"Type\";s:13:\"cl_prop_types\";s:5:\"Types\";s:14:\"cl_prop_status\";s:6:\"Status\";s:16:\"cl_prop_statuses\";s:8:\"Statuses\";s:13:\"cl_prop_label\";s:5:\"Label\";s:14:\"cl_prop_labels\";s:6:\"Labels\";s:13:\"cl_sale_price\";s:18:\"Sale or Rent Price\";s:18:\"cl_sale_price_plac\";s:15:\"Enter the price\";s:15:\"cl_second_price\";s:23:\"Second Price (Optional)\";s:20:\"cl_second_price_plac\";s:22:\"Enter the second price\";s:16:\"cl_price_postfix\";s:15:\"After The Price\";s:21:\"cl_price_postfix_plac\";s:21:\"Enter the after price\";s:24:\"cl_price_postfix_tooltip\";s:20:\"For example: Monthly\";s:15:\"cl_price_prefix\";s:12:\"Price Prefix\";s:20:\"cl_price_prefix_plac\";s:22:\"Enter the price prefix\";s:23:\"cl_price_prefix_tooltip\";s:23:\"For example: Start from\";s:11:\"cl_bedrooms\";s:8:\"Bedrooms\";s:16:\"cl_bedrooms_plac\";s:24:\"Enter number of bedrooms\";s:8:\"cl_rooms\";s:5:\"Rooms\";s:13:\"cl_rooms_plac\";s:21:\"Enter number of rooms\";s:12:\"cl_bathrooms\";s:9:\"Bathrooms\";s:17:\"cl_bathrooms_plac\";s:25:\"Enter number of bathrooms\";s:12:\"cl_area_size\";s:9:\"Area Size\";s:17:\"cl_area_size_plac\";s:24:\"Enter property area size\";s:20:\"cl_area_size_postfix\";s:12:\"Size Postfix\";s:25:\"cl_area_size_postfix_plac\";s:32:\"Enter property area size postfix\";s:28:\"cl_area_size_postfix_tooltip\";s:18:\"For example: Sq Ft\";s:12:\"cl_land_size\";s:9:\"Land Area\";s:17:\"cl_land_size_plac\";s:24:\"Enter property Land Area\";s:20:\"cl_land_size_postfix\";s:22:\"Land Area Size Postfix\";s:25:\"cl_land_size_postfix_plac\";s:32:\"Enter property Land Area postfix\";s:28:\"cl_land_size_postfix_tooltip\";s:18:\"For example: Sq Ft\";s:9:\"cl_garage\";s:7:\"Garages\";s:14:\"cl_garage_plac\";s:23:\"Enter number of garages\";s:14:\"cl_garage_size\";s:11:\"Garage Size\";s:19:\"cl_garage_size_plac\";s:21:\"Enter the garage size\";s:22:\"cl_garage_size_tooltip\";s:22:\"For example: 200 Sq Ft\";s:13:\"cl_year_built\";s:10:\"Year Built\";s:18:\"cl_year_built_plac\";s:16:\"Enter year built\";s:10:\"cl_prop_id\";s:11:\"Property ID\";s:15:\"cl_prop_id_plac\";s:17:\"Enter property ID\";s:18:\"cl_prop_id_tooltip\";s:18:\"For example: HZ-01\";s:19:\"cl_additional_title\";s:5:\"Title\";s:24:\"cl_additional_title_plac\";s:13:\"Eg: Equipment\";s:19:\"cl_additional_value\";s:5:\"Value\";s:24:\"cl_additional_value_plac\";s:11:\"Grill - Gas\";s:23:\"cl_drag_drop_text_image\";s:62:\"Drag and drop the images to customize the image gallery order.\";s:18:\"cl_drag_drop_title\";s:37:\"Drag and drop the gallery images here\";s:13:\"cl_image_size\";s:23:\"(Minimum size 1440x900)\";s:12:\"cl_image_btn\";s:17:\"Select and Upload\";s:17:\"cl_image_featured\";s:49:\"Click on the star icon to select the cover image.\";s:12:\"cl_video_url\";s:9:\"Video URL\";s:17:\"cl_video_url_plac\";s:51:\"YouTube, Vimeo, SWF File and MOV File are supported\";s:13:\"cl_energy_cls\";s:12:\"Energy Class\";s:18:\"cl_energy_cls_plac\";s:19:\"Select Energy Class\";s:15:\"cl_energy_index\";s:31:\"Global Energy Performance Index\";s:20:\"cl_energy_index_plac\";s:29:\"For example: 92.42 kWh / m²a\";s:21:\"cl_energy_renew_index\";s:34:\"Renewable energy performance index\";s:26:\"cl_energy_renew_index_plac\";s:29:\"For example: 00.00 kWh / m²a\";s:27:\"cl_energy_build_performance\";s:34:\"Energy performance of the building\";s:32:\"cl_energy_build_performance_plac\";s:0:\"\";s:20:\"cl_energy_ecp_rating\";s:18:\"EPC Current Rating\";s:25:\"cl_energy_ecp_rating_plac\";s:0:\"\";s:15:\"cl_energy_ecp_p\";s:20:\"EPC Potential Rating\";s:20:\"cl_energy_ecp_p_plac\";s:0:\"\";s:15:\"cl_virtual_plac\";s:38:\"Enter virtual tour iframe/embeded code\";s:15:\"cl_private_note\";s:69:\"Write private note for this property, it will not display for public.\";s:20:\"cl_private_note_plac\";s:19:\"Enter the note here\";s:10:\"cl_address\";s:7:\"Address\";s:15:\"cl_address_plac\";s:27:\"Enter your property address\";s:6:\"cl_zip\";s:15:\"Zip/Postal Code\";s:11:\"cl_zip_plac\";s:21:\"Enter zip/postal code\";s:10:\"cl_country\";s:7:\"Country\";s:15:\"cl_country_plac\";s:17:\"Enter the country\";s:8:\"cl_state\";s:12:\"State/county\";s:13:\"cl_state_plac\";s:22:\"Enter the State/county\";s:7:\"cl_city\";s:4:\"City\";s:12:\"cl_city_plac\";s:14:\"Enter the city\";s:7:\"cl_area\";s:4:\"Area\";s:12:\"cl_area_plac\";s:14:\"Enter the area\";s:17:\"cl_drag_drop_text\";s:51:\"Drag and drop the pin on map to find exact location\";s:11:\"cl_latitude\";s:8:\"Latitude\";s:16:\"cl_latitude_plac\";s:22:\"Enter address latitude\";s:12:\"cl_longitude\";s:9:\"Longitude\";s:17:\"cl_longitude_plac\";s:23:\"Enter address Longitude\";s:14:\"cl_street_view\";s:11:\"Street View\";s:8:\"cl_ppbtn\";s:30:\"Place the pin in address above\";s:17:\"cl_streat_address\";s:14:\"Streat Address\";s:22:\"cl_streat_address_plac\";s:50:\"Enter only the street name and the building number\";s:16:\"cl_make_featured\";s:46:\"Do you want to mark this property as featured?\";s:13:\"cl_login_view\";s:49:\"The user must be logged in to view this property?\";s:18:\"cl_login_view_plac\";s:60:\"If \"Yes\" then only logged in user can view property details.\";s:13:\"cl_disclaimer\";s:10:\"Disclaimer\";s:11:\"cl_mortgage\";s:18:\"Mortgage Calulator\";s:16:\"cl_mortgage_plac\";s:47:\"Show/Hide mortgage calculator for this listing?\";s:17:\"cl_decuments_text\";s:56:\"You can attach PDF files, Map images OR other documents.\";s:17:\"cl_attachment_btn\";s:18:\"Select Attachment.\";s:23:\"cl_uploaded_attachments\";s:20:\"Uploaded Attachments\";s:20:\"cl_contact_info_text\";s:64:\"What information do you want to display in agent data container?\";s:14:\"cl_author_info\";s:11:\"Author Info\";s:13:\"cl_agent_info\";s:45:\"Agent Info (Choose agent from the list below)\";s:18:\"cl_agent_info_plac\";s:15:\"Select an Agent\";s:14:\"cl_agency_info\";s:47:\"Agency Info (Choose agency from the list below)\";s:15:\"cl_agency_info2\";s:11:\"Agency Info\";s:19:\"cl_agency_info_plac\";s:16:\"Select an Agency\";s:14:\"cl_not_display\";s:14:\"Do not display\";s:13:\"cl_add_slider\";s:67:\"Do you want to display this property on the custom property slider?\";s:18:\"cl_add_slider_plac\";s:42:\"Upload an image below if you selected yes.\";s:13:\"cl_slider_img\";s:12:\"Slider Image\";s:18:\"cl_slider_img_size\";s:29:\"Suggested size 2000px x 700px\";s:13:\"cl_plan_title\";s:10:\"Plan Title\";s:18:\"cl_plan_title_plac\";s:20:\"Enter the plan title\";s:16:\"cl_plan_bedrooms\";s:8:\"Bedrooms\";s:21:\"cl_plan_bedrooms_plac\";s:28:\"Enter the number of bedrooms\";s:17:\"cl_plan_bathrooms\";s:9:\"Bathrooms\";s:22:\"cl_plan_bathrooms_plac\";s:29:\"Enter the number of bathrooms\";s:13:\"cl_plan_price\";s:5:\"Price\";s:18:\"cl_plan_price_plac\";s:15:\"Enter the price\";s:21:\"cl_plan_price_postfix\";s:5:\"Price\";s:26:\"cl_plan_price_postfix_plac\";s:23:\"Enter the price postfix\";s:12:\"cl_plan_size\";s:9:\"Plan Size\";s:17:\"cl_plan_size_plac\";s:19:\"Enter the plan size\";s:11:\"cl_plan_img\";s:10:\"Plan Image\";s:16:\"cl_plan_img_plac\";s:21:\"Upload the plan image\";s:15:\"cl_plan_img_btn\";s:12:\"Select Image\";s:16:\"cl_plan_img_size\";s:25:\"Minimum size 800 x 600 px\";s:11:\"cl_plan_des\";s:11:\"Description\";s:16:\"cl_plan_des_plac\";s:26:\"Enter the plan description\";s:13:\"cl_subl_title\";s:5:\"Title\";s:18:\"cl_subl_title_plac\";s:16:\"Enter the  title\";s:16:\"cl_subl_bedrooms\";s:8:\"Bedrooms\";s:21:\"cl_subl_bedrooms_plac\";s:28:\"Enter the number of bedrooms\";s:17:\"cl_subl_bathrooms\";s:9:\"Bathrooms\";s:22:\"cl_subl_bathrooms_plac\";s:29:\"Enter the number of bathrooms\";s:13:\"cl_subl_price\";s:5:\"Price\";s:18:\"cl_subl_price_plac\";s:15:\"Enter the price\";s:21:\"cl_subl_price_postfix\";s:5:\"Price\";s:26:\"cl_subl_price_postfix_plac\";s:23:\"Enter the price postfix\";s:12:\"cl_subl_size\";s:13:\"Property Size\";s:17:\"cl_subl_size_plac\";s:23:\"Enter the property size\";s:20:\"cl_subl_size_postfix\";s:12:\"Size Postfix\";s:25:\"cl_subl_size_postfix_plac\";s:31:\"Enter the property size postfix\";s:12:\"cl_subl_type\";s:13:\"Property Type\";s:17:\"cl_subl_type_plac\";s:23:\"Enter the property type\";s:12:\"cl_subl_date\";s:17:\"Availability Date\";s:17:\"cl_subl_date_plac\";s:27:\"Enter the availability date\";s:11:\"cl_subl_ids\";s:11:\"Listing IDs\";s:16:\"cl_subl_ids_plac\";s:37:\"Enter the listing IDs comma separated\";s:19:\"cl_subl_ids_tooltip\";s:105:\"If the sub-properties are separated listings, use the box above to enter the listing IDs (Example: 4,5,6)\";s:9:\"dsh_board\";s:5:\"Board\";s:14:\"dsh_activities\";s:10:\"Activities\";s:9:\"dsh_deals\";s:5:\"Deals\";s:9:\"dsh_leads\";s:5:\"Leads\";s:13:\"dsh_inquiries\";s:9:\"Inquiries\";s:11:\"dsh_insight\";s:7:\"Insight\";s:9:\"dsh_props\";s:10:\"Properties\";s:7:\"dsh_all\";s:3:\"All\";s:13:\"dsh_published\";s:9:\"Published\";s:11:\"dsh_pending\";s:7:\"Pending\";s:11:\"dsh_expired\";s:7:\"Expired\";s:9:\"dsh_draft\";s:5:\"Draft\";s:8:\"dsh_hold\";s:7:\"On Hold\";s:18:\"dsh_create_listing\";s:16:\"Create a Listing\";s:12:\"dsh_favorite\";s:9:\"Favorites\";s:12:\"dsh_messages\";s:8:\"Messages\";s:18:\"dsh_saved_searches\";s:14:\"Saved Searches\";s:14:\"dsh_membership\";s:10:\"Membership\";s:12:\"dsh_invoices\";s:8:\"Invoices\";s:11:\"dsh_profile\";s:10:\"My Profile\";s:8:\"dsh_gdpr\";s:12:\"GDPR Request\";s:10:\"dsh_agents\";s:6:\"Agents\";s:10:\"dsh_addnew\";s:7:\"Add New\";s:10:\"dsh_logout\";s:7:\"Log Out\";s:11:\"custom_logo\";a:5:{s:3:\"url\";s:93:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:2:\"id\";s:3:\"172\";s:6:\"height\";s:3:\"265\";s:5:\"width\";s:3:\"700\";s:9:\"thumbnail\";s:101:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";}s:11:\"retina_logo\";a:5:{s:3:\"url\";s:93:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:2:\"id\";s:3:\"172\";s:6:\"height\";s:3:\"265\";s:5:\"width\";s:3:\"700\";s:9:\"thumbnail\";s:101:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";}s:11:\"mobile_logo\";a:5:{s:3:\"url\";s:93:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:2:\"id\";s:3:\"172\";s:6:\"height\";s:3:\"265\";s:5:\"width\";s:3:\"700\";s:9:\"thumbnail\";s:101:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";}s:18:\"mobile_retina_logo\";a:5:{s:3:\"url\";s:93:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:2:\"id\";s:3:\"172\";s:6:\"height\";s:3:\"265\";s:5:\"width\";s:3:\"700\";s:9:\"thumbnail\";s:101:\"https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";}s:18:\"custom_logo_splash\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"retina_logo_splash\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"custom_logo_mobile_splash\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"retina_logo_mobile_splash\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"retina_logo_height\";s:5:\"100px\";s:17:\"retina_logo_width\";s:0:\"\";s:24:\"retina_mobilelogo_height\";s:4:\"50px\";s:23:\"retina_mobilelogo_width\";s:0:\"\";s:7:\"favicon\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:11:\"iphone_icon\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:18:\"iphone_icon_retina\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:9:\"ipad_icon\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:16:\"ipad_icon_retina\";a:5:{s:3:\"url\";s:71:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo.jpg\";s:2:\"id\";s:2:\"22\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"178\";s:9:\"thumbnail\";s:79:\"https://lantern-realty.com/wp-content/uploads/2018/08/Facebook-Logo-150x150.jpg\";}s:13:\"lightbox_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"dashboard_logo\";a:5:{s:3:\"url\";s:77:\"https://lantern-realty.com/wp-content/themes/houzez/img/logo-houzez-white.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"header_style\";s:1:\"2\";s:14:\"header_1_width\";s:9:\"container\";s:19:\"header_1_menu_align\";s:8:\"nav-left\";s:15:\"header_1_height\";s:2:\"60\";s:15:\"header_2_height\";s:2:\"54\";s:19:\"header_3_top_height\";s:2:\"80\";s:22:\"header_3_bottom_height\";s:2:\"54\";s:15:\"header_4_height\";s:2:\"90\";s:19:\"header_5_top_height\";s:3:\"110\";s:22:\"header_5_bottom_height\";s:2:\"54\";s:15:\"header_6_height\";s:2:\"60\";s:16:\"main-menu-sticky\";s:1:\"1\";s:14:\"header_4_width\";s:9:\"container\";s:19:\"header_4_menu_align\";s:8:\"nav-left\";s:18:\"hd1_4_phone_enable\";s:1:\"0\";s:11:\"hd1_4_phone\";s:17:\"+1 (800) 987 6543\";s:10:\"hd3_callus\";s:1:\"1\";s:17:\"hd3_call_us_image\";a:5:{s:3:\"url\";s:72:\"http://lantern-realty.com/wp-content/themes/houzez/images/call-image.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"hd3_call_us_text\";s:8:\"Call Us:\";s:9:\"hd3_phone\";s:14:\"(980) 858-2074\";s:16:\"hd2_contact_info\";s:1:\"1\";s:17:\"hd2_contact_phone\";s:14:\"(704) 298-0087\";s:17:\"hd2_contact_email\";s:26:\"contact@lantern-realty.com\";s:16:\"hd2_address_info\";s:1:\"1\";s:17:\"hd2_address_line1\";s:67:\"Serving the Piedmont, Foothills and Mountain Areas of the Carolinas\";s:17:\"hd2_address_line2\";s:0:\"\";s:15:\"hd2_timing_info\";s:1:\"0\";s:16:\"hd2_timing_hours\";s:16:\"Agents Available\";s:15:\"hd2_timing_days\";s:14:\"Contact Us Now\";s:13:\"social-header\";s:1:\"0\";s:11:\"hs-facebook\";s:39:\"https://www.facebook.com/lanternrealty/\";s:10:\"hs-twitter\";s:0:\"\";s:13:\"hs-googleplus\";s:0:\"\";s:11:\"hs-linkedin\";s:0:\"\";s:12:\"hs-instagram\";s:0:\"\";s:12:\"hs-pinterest\";s:0:\"\";s:10:\"hs-youtube\";s:0:\"\";s:7:\"hs-yelp\";s:0:\"\";s:10:\"hs-behance\";s:0:\"\";s:22:\"create_lisiting_enable\";s:1:\"0\";s:21:\"create_listing_button\";s:2:\"no\";s:7:\"top_bar\";s:1:\"0\";s:13:\"top_bar_width\";s:9:\"container\";s:14:\"top_bar_mobile\";s:1:\"0\";s:12:\"top_bar_left\";s:12:\"social_icons\";s:13:\"top_bar_right\";s:4:\"none\";s:13:\"top_bar_phone\";s:12:\"704-298-0087\";s:13:\"top_bar_email\";s:26:\"contact@lantern-realty.com\";s:14:\"top_bar_slogan\";s:0:\"\";s:24:\"currency_switcher_enable\";s:1:\"0\";s:27:\"houzez_supported_currencies\";s:43:\"AUD,CAD,CHF,EUR,GBP,HKD,JPY,NOK,SEK,USD,NGN\";s:22:\"houzez_currency_expiry\";s:4:\"3600\";s:20:\"area_switcher_enable\";s:1:\"0\";s:16:\"houzez_base_area\";s:4:\"sqft\";s:13:\"splash_layout\";s:15:\"container-fluid\";s:14:\"backgroud_type\";s:5:\"image\";s:15:\"splash_page_nav\";s:1:\"1\";s:17:\"splash_menu_align\";s:8:\"nav-left\";s:13:\"splash_search\";s:1:\"1\";s:12:\"splash_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"splash_slider\";s:0:\"\";s:13:\"splash_bg_mp4\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"splash_bg_webm\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"splash_bg_ogv\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"splash_video_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:19:\"splash_welcome_text\";s:30:\"Welcome, Make Yourself At Home\";s:18:\"splash_welcome_sub\";s:0:\"\";s:18:\"splash_callus_text\";s:12:\"Call Us Free\";s:19:\"splash_callus_phone\";s:14:\"(800) 897 6543\";s:13:\"social-splash\";s:1:\"0\";s:11:\"sp-facebook\";s:0:\"\";s:10:\"sp-twitter\";s:0:\"\";s:13:\"sp-googleplus\";s:0:\"\";s:11:\"sp-linkedin\";s:0:\"\";s:12:\"sp-instagram\";s:0:\"\";s:20:\"splash-logolink-type\";s:9:\"home_page\";s:15:\"splash-logolink\";s:0:\"\";s:12:\"header_login\";s:1:\"0\";s:15:\"header_register\";s:1:\"0\";s:19:\"login_register_type\";s:7:\"as_icon\";s:15:\"header_loggedIn\";s:1:\"0\";s:19:\"register_first_name\";s:1:\"0\";s:18:\"register_last_name\";s:1:\"0\";s:15:\"register_mobile\";s:1:\"0\";s:15:\"enable_password\";s:2:\"no\";s:13:\"user_as_agent\";s:2:\"no\";s:15:\"realtor_visible\";s:1:\"0\";s:14:\"login_redirect\";s:9:\"same_page\";s:19:\"login_redirect_link\";s:0:\"\";s:21:\"login_terms_condition\";s:0:\"\";s:14:\"facebook_login\";s:2:\"no\";s:16:\"facebook_api_key\";s:0:\"\";s:15:\"facebook_secret\";s:0:\"\";s:12:\"google_login\";s:2:\"no\";s:16:\"google_client_id\";s:0:\"\";s:13:\"google_secret\";s:0:\"\";s:15:\"user_show_roles\";s:1:\"0\";s:23:\"user_show_roles_profile\";s:1:\"0\";s:15:\"show_hide_roles\";a:6:{s:5:\"agent\";s:0:\"\";s:6:\"agency\";s:0:\"\";s:5:\"owner\";s:0:\"\";s:5:\"buyer\";s:0:\"\";s:6:\"seller\";s:0:\"\";s:7:\"manager\";s:0:\"\";}s:10:\"agent_role\";s:5:\"Agent\";s:11:\"agency_role\";s:6:\"Agency\";s:10:\"owner_role\";s:5:\"Owner\";s:10:\"buyer_role\";s:5:\"Buyer\";s:11:\"seller_role\";s:6:\"Seller\";s:12:\"manager_role\";s:7:\"Manager\";s:14:\"multi_currency\";s:1:\"0\";s:22:\"default_multi_currency\";s:0:\"\";s:12:\"short_prices\";s:1:\"0\";s:13:\"indian_format\";s:1:\"0\";s:15:\"currency_symbol\";s:1:\"$\";s:17:\"currency_position\";s:6:\"before\";s:8:\"decimals\";s:1:\"0\";s:23:\"decimal_point_separator\";s:1:\".\";s:19:\"thousands_separator\";s:1:\",\";s:18:\"currency_separator\";s:1:\"/\";s:9:\"typo-body\";a:9:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:4:\"none\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"24px\";}s:12:\"typo-headers\";a:9:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:4:\"left\";s:14:\"text-transform\";s:4:\"none\";s:9:\"font-size\";s:4:\"14px\";}s:11:\"typo-footer\";a:10:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:4:\"left\";s:14:\"text-transform\";s:4:\"none\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"25px\";}s:11:\"typo-topbar\";a:10:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:4:\"left\";s:14:\"text-transform\";s:4:\"none\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:4:\"25px\";}s:13:\"typo-headings\";a:8:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:7:\"inherit\";s:14:\"text-transform\";s:7:\"inherit\";}s:15:\"body_text_color\";s:7:\"#222222\";s:13:\"body_bg_color\";s:7:\"#f5f5f5\";s:20:\"houzez_primary_color\";s:7:\"#00AEEF\";s:26:\"houzez_primary_color_hover\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:3:\".75\";s:4:\"rgba\";s:20:\"rgba(0,174,239,0.75)\";}s:22:\"houzez_secondary_color\";s:7:\"#FF6E00\";s:28:\"houzez_secondary_color_hover\";a:3:{s:5:\"color\";s:7:\"#FF6E00\";s:5:\"alpha\";s:3:\".75\";s:4:\"rgba\";s:20:\"rgba(255,110,0,0.75)\";}s:11:\"header_1_bg\";s:7:\"#004272\";s:20:\"header_1_links_color\";s:7:\"#FFFFFF\";s:26:\"header_1_links_hover_color\";s:0:\"\";s:29:\"header_1_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:15:\"header_2_top_bg\";s:7:\"#ffffff\";s:17:\"header_2_top_text\";s:7:\"#004274\";s:11:\"header_2_bg\";s:7:\"#004272\";s:20:\"header_2_links_color\";s:7:\"#ffffff\";s:26:\"header_2_links_hover_color\";s:0:\"\";s:29:\"header_2_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:15:\"header_2_border\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:11:\"header_3_bg\";s:7:\"#ffffff\";s:21:\"header_3_callus_color\";s:7:\"#ffffff\";s:24:\"header_3_callus_bg_color\";s:7:\"#00aeef\";s:16:\"header_3_bg_menu\";s:0:\"\";s:20:\"header_3_links_color\";s:7:\"#FFFFFF\";s:26:\"header_3_links_hover_color\";s:0:\"\";s:29:\"header_3_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:15:\"header_3_border\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:21:\"header_3_social_color\";s:7:\"#FFFFFF\";s:11:\"header_4_bg\";s:7:\"#ffffff\";s:20:\"header_4_links_color\";s:7:\"#004274\";s:26:\"header_4_links_hover_color\";s:0:\"\";s:29:\"header_4_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#00aeff\";s:5:\"alpha\";s:2:\".1\";s:4:\"rgba\";s:22:\"rgba(0, 174, 255, 0.1)\";}s:11:\"header_6_bg\";s:7:\"#00AEEF\";s:20:\"header_6_links_color\";s:7:\"#FFFFFF\";s:26:\"header_6_links_hover_color\";s:0:\"\";s:29:\"header_6_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:21:\"header_6_social_color\";s:7:\"#FFFFFF\";s:32:\"header_4_transparent_links_color\";s:7:\"#ffffff\";s:38:\"header_4_transparent_links_hover_color\";s:7:\"#00aeef\";s:35:\"header_4_transparent_border_bottom1\";a:6:{s:10:\"border-top\";s:3:\"1px\";s:12:\"border-right\";s:3:\"1px\";s:13:\"border-bottom\";s:3:\"1px\";s:11:\"border-left\";s:3:\"1px\";s:12:\"border-style\";s:4:\"none\";s:12:\"border-color\";s:0:\"\";}s:40:\"header_4_transparent_border_bottom_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:3:\".30\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.3)\";}s:17:\"header_submenu_bg\";a:3:{s:5:\"color\";s:7:\"#FFFFFF\";s:5:\"alpha\";s:3:\".95\";s:4:\"rgba\";s:22:\"rgba(255,255,255,0.95)\";}s:26:\"header_submenu_links_color\";s:7:\"#2e3e49\";s:32:\"header_submenu_links_hover_color\";s:7:\"#00aeef\";s:27:\"header_submenu_border_color\";s:7:\"#e6e6e6\";s:18:\"header_4_btn_color\";s:7:\"#004274\";s:24:\"header_4_btn_hover_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:21:\"header_4_btn_bg_color\";s:7:\"#ffffff\";s:27:\"header_4_btn_bg_hover_color\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:19:\"header_4_btn_border\";a:6:{s:10:\"border-top\";s:3:\"1px\";s:12:\"border-right\";s:3:\"1px\";s:13:\"border-bottom\";s:3:\"1px\";s:11:\"border-left\";s:3:\"1px\";s:12:\"border-style\";s:5:\"solid\";s:12:\"border-color\";s:7:\"#004274\";}s:31:\"header_4_btn_border_hover_color\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:30:\"header_4_transparent_btn_color\";s:7:\"#ffffff\";s:36:\"header_4_transparent_btn_hover_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:33:\"header_4_transparent_btn_bg_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:2:\".2\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.2)\";}s:39:\"header_4_transparent_btn_bg_hover_color\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:31:\"header_4_transparent_btn_border\";a:6:{s:10:\"border-top\";s:3:\"1px\";s:12:\"border-right\";s:3:\"1px\";s:13:\"border-bottom\";s:3:\"1px\";s:11:\"border-left\";s:3:\"1px\";s:12:\"border-style\";s:5:\"solid\";s:12:\"border-color\";s:7:\"#ffffff\";}s:43:\"header_4_transparent_btn_border_hover_color\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:17:\"mob_menu_bg_color\";s:7:\"#ffffff\";s:18:\"mob_menu_btn_color\";s:7:\"#000000\";s:16:\"mob_nav_bg_color\";s:7:\"#ffffff\";s:14:\"mob_link_color\";s:7:\"#004274\";s:17:\"mobile_nav_border\";a:6:{s:10:\"border-top\";s:3:\"1px\";s:12:\"border-right\";s:3:\"0px\";s:13:\"border-bottom\";s:3:\"0px\";s:11:\"border-left\";s:3:\"0px\";s:12:\"border-style\";s:5:\"solid\";s:12:\"border-color\";s:7:\"#ffffff\";}s:14:\"adv_background\";s:7:\"#FFFFFF\";s:22:\"side_search_background\";s:7:\"#FFFFFF\";s:22:\"adv_textfields_borders\";s:7:\"#cccccc\";s:16:\"adv_text_color20\";s:7:\"#a1a7a8\";s:15:\"adv_other_color\";s:7:\"#222222\";s:23:\"adv_halfmap_other_color\";s:7:\"#222222\";s:17:\"adv_search_btn_bg\";a:2:{s:7:\"regular\";s:7:\"#ff6e00\";s:5:\"hover\";s:7:\"#e96603\";}s:19:\"adv_search_btn_text\";a:2:{s:7:\"regular\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#ffffff\";}s:17:\"adv_search_border\";a:2:{s:7:\"regular\";s:7:\"#ff6e00\";s:5:\"hover\";s:7:\"#e96603\";}s:16:\"adv_button_color\";a:2:{s:7:\"regular\";s:7:\"#00AEEF\";s:5:\"hover\";s:7:\"#00AEEF\";}s:19:\"adv_button_bg_color\";a:2:{s:7:\"regular\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#00aeff\";}s:23:\"adv_button_border_color\";a:2:{s:7:\"regular\";s:7:\"#dce0e0\";s:5:\"hover\";s:7:\"#00aeff\";}s:21:\"header_search_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:4:\"10px\";s:14:\"padding-bottom\";s:4:\"10px\";}s:31:\"adv_overlay_open_close_bg_color\";s:7:\"#ff6e00\";s:28:\"adv_overlay_open_close_color\";s:7:\"#ffffff\";s:9:\"ssb_color\";s:7:\"#ffffff\";s:15:\"ssb_color_hover\";s:7:\"#ffffff\";s:12:\"ssb_bg_color\";s:7:\"#28a745\";s:18:\"ssb_bg_color_hover\";s:7:\"#28a745\";s:16:\"ssb_border_color\";s:7:\"#28a745\";s:22:\"ssb_border_color_hover\";s:7:\"#28a745\";s:10:\"ua_menu_bg\";s:7:\"#FFFFFF\";s:19:\"ua_menu_links_color\";s:7:\"#2e3e49\";s:25:\"ua_menu_links_hover_color\";s:7:\"#2e3e49\";s:28:\"ua_menu_links_hover_bg_color\";a:3:{s:5:\"color\";s:7:\"#cccccc\";s:5:\"alpha\";s:4:\"0.15\";s:4:\"rgba\";s:22:\"rgba(204,204,204,0.15)\";}s:20:\"ua_menu_border_color\";s:7:\"#e6e6e6\";s:13:\"dm_background\";s:7:\"#00365e\";s:8:\"dm_color\";s:7:\"#ffffff\";s:14:\"dm_hover_color\";s:7:\"#4cc6f4\";s:23:\"dm_submenu_active_color\";s:7:\"#00aeff\";s:22:\"houzez_prop_details_bg\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:2:\".1\";s:4:\"rgba\";s:19:\"rgba(0,174,239,0.1)\";}s:25:\"prop_details_border_color\";s:7:\"#00aeff\";s:23:\"featured_label_bg_color\";s:7:\"#77c720\";s:20:\"featured_label_color\";s:7:\"#ffffff\";s:10:\"top_bar_bg\";s:7:\"#000000\";s:13:\"top_bar_color\";s:7:\"#ffffff\";s:19:\"top_bar_color_hover\";a:3:{s:5:\"color\";s:7:\"#00AEEF\";s:5:\"alpha\";s:3:\".75\";s:4:\"rgba\";s:20:\"rgba(0,174,239,0.75)\";}s:15:\"footer_bg_color\";s:7:\"#004274\";s:22:\"footer_bottom_bg_color\";s:7:\"#00335A\";s:12:\"footer_color\";s:7:\"#FFFFFF\";s:18:\"footer_hover_color\";a:3:{s:5:\"color\";s:7:\"#00aeef\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,174,239,1)\";}s:13:\"prop-top-area\";s:2:\"v1\";s:23:\"prop_default_active_tab\";s:13:\"image_gallery\";s:19:\"prop-content-layout\";s:6:\"simple\";s:13:\"is_full_width\";s:1:\"0\";s:17:\"prop_details_cols\";s:11:\"list-2-cols\";s:17:\"prop_address_cols\";s:11:\"list-2-cols\";s:18:\"prop_features_cols\";s:11:\"list-3-cols\";s:15:\"prop-detail-nav\";s:2:\"no\";s:14:\"map_in_section\";s:1:\"0\";s:23:\"send_agent_message_copy\";s:1:\"0\";s:24:\"send_agent_message_email\";s:0:\"\";s:15:\"property_blocks\";a:2:{s:7:\"enabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:4:\"unit\";s:25:\"Multi Unit / Sub Listings\";s:11:\"description\";s:11:\"Description\";s:7:\"address\";s:7:\"Address\";s:7:\"details\";s:7:\"Details\";s:8:\"features\";s:8:\"Features\";s:11:\"floor_plans\";s:11:\"Floor Plans\";s:5:\"video\";s:5:\"Video\";s:12:\"virtual_tour\";s:18:\"360° Virtual Tour\";s:9:\"walkscore\";s:9:\"Walkscore\";s:12:\"agent_bottom\";s:12:\"Agent bottom\";}s:8:\"disabled\";a:13:{s:7:\"placebo\";s:7:\"placebo\";s:11:\"yelp_nearby\";s:14:\"Near by Places\";s:13:\"schedule_tour\";s:13:\"Schedule Tour\";s:12:\"energy_class\";s:12:\"Energy Class\";s:15:\"adsense_space_1\";s:15:\"Adsense Space 1\";s:15:\"adsense_space_2\";s:15:\"Adsense Space 2\";s:15:\"adsense_space_3\";s:15:\"Adsense Space 3\";s:8:\"overview\";s:8:\"Overview\";s:19:\"mortgage_calculator\";s:19:\"Mortgage Calculator\";s:6:\"review\";s:7:\"Reviews\";s:18:\"similar_properties\";s:16:\"Similar Listings\";s:16:\"booking_calendar\";s:21:\"Availability Calendar\";s:13:\"block_gallery\";s:15:\"Section Gallery\";}}s:21:\"block_gallery_visible\";s:1:\"9\";s:21:\"block_gallery_columns\";s:1:\"3\";s:20:\"property_blocks_tabs\";a:2:{s:7:\"enabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:11:\"description\";s:11:\"Description\";s:7:\"address\";s:7:\"Address\";s:7:\"details\";s:7:\"Details\";s:8:\"features\";s:8:\"Features\";s:11:\"floor_plans\";s:11:\"Floor Plans\";s:5:\"video\";s:5:\"Video\";}s:8:\"disabled\";a:2:{s:7:\"placebo\";s:7:\"placebo\";s:12:\"virtual_tour\";s:18:\"360° Virtual Tour\";}}s:17:\"tabs_agent_bottom\";s:1:\"1\";s:28:\"houzez_availability_calendar\";s:1:\"0\";s:19:\"houzez_energy_class\";s:1:\"0\";s:15:\"houzez_mortgage\";s:1:\"1\";s:17:\"houzez_sublisting\";s:1:\"0\";s:20:\"houzez_tabs_schedule\";s:1:\"0\";s:27:\"property_blocks_luxuryhomes\";a:2:{s:7:\"enabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:4:\"unit\";s:25:\"Multi Unit / Sub Listings\";s:11:\"description\";s:21:\"Description & Details\";s:8:\"features\";s:8:\"Features\";s:7:\"address\";s:7:\"Address\";s:7:\"gallery\";s:7:\"Gallery\";s:11:\"floor_plans\";s:11:\"Floor Plans\";s:5:\"video\";s:5:\"Video\";s:9:\"walkscore\";s:9:\"Walkscore\";s:11:\"yelp_nearby\";s:6:\"Nearby\";s:10:\"agent_form\";s:13:\"Agent Contact\";}s:8:\"disabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:12:\"virtual_tour\";s:18:\"360° Virtual Tour\";s:12:\"energy_class\";s:12:\"Energy Class\";s:13:\"schedule_tour\";s:13:\"Schedule Tour\";s:15:\"adsense_space_1\";s:15:\"Adsense Space 1\";s:15:\"adsense_space_2\";s:15:\"Adsense Space 2\";s:15:\"adsense_space_3\";s:15:\"Adsense Space 3\";s:19:\"mortgage_calculator\";s:19:\"Mortgage Calculator\";s:6:\"review\";s:7:\"Reviews\";s:18:\"similar_properties\";s:16:\"Similar Listings\";s:16:\"booking_calendar\";s:21:\"Availability Calendar\";}}s:12:\"show_id_head\";s:1:\"1\";s:22:\"overview_data_composer\";a:2:{s:7:\"enabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:4:\"type\";s:13:\"Property Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:6:\"garage\";s:6:\"Garage\";s:9:\"area-size\";s:9:\"Area Size\";s:10:\"year-built\";s:10:\"Year Built\";}s:8:\"disabled\";a:4:{s:7:\"placebo\";s:7:\"placebo\";s:5:\"rooms\";s:5:\"Rooms\";s:9:\"land-area\";s:9:\"Land Area\";s:11:\"property-id\";s:11:\"Property ID\";}}s:17:\"energy_class_data\";s:26:\"A+, A, B, C, D, E, F, G, H\";s:14:\"energy_1_color\";s:7:\"#33a357\";s:14:\"energy_2_color\";s:7:\"#79b752\";s:14:\"energy_3_color\";s:7:\"#c3d545\";s:14:\"energy_4_color\";s:7:\"#fff12c\";s:14:\"energy_5_color\";s:7:\"#edb731\";s:14:\"energy_6_color\";s:7:\"#d66f2c\";s:14:\"energy_7_color\";s:7:\"#cc232a\";s:14:\"energy_8_color\";s:7:\"#cc232a\";s:14:\"energy_9_color\";s:7:\"#cc232a\";s:15:\"energy_10_color\";s:7:\"#cc232a\";s:21:\"print_property_button\";s:1:\"1\";s:21:\"detail_featured_label\";s:1:\"1\";s:13:\"detail_status\";s:1:\"1\";s:12:\"detail_label\";s:1:\"1\";s:20:\"prop_detail_favorite\";s:1:\"1\";s:17:\"prop_detail_share\";s:1:\"1\";s:18:\"documents_download\";s:1:\"1\";s:23:\"hide_detail_prop_fields\";a:20:{s:7:\"prop_id\";s:0:\"\";s:9:\"prop_type\";s:0:\"\";s:11:\"prop_status\";s:0:\"\";s:10:\"prop_label\";s:0:\"\";s:15:\"sale_rent_price\";s:0:\"\";s:8:\"bedrooms\";s:0:\"\";s:5:\"rooms\";s:0:\"\";s:9:\"bathrooms\";s:0:\"\";s:9:\"area_size\";s:0:\"\";s:9:\"land_area\";s:0:\"\";s:7:\"garages\";s:0:\"\";s:10:\"year_built\";s:0:\"\";s:12:\"updated_date\";s:0:\"\";s:18:\"additional_details\";s:0:\"\";s:7:\"address\";s:0:\"\";s:7:\"country\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:4:\"area\";s:0:\"\";s:3:\"zip\";s:0:\"\";}s:15:\"adsense_space_1\";s:0:\"\";s:15:\"adsense_space_2\";s:0:\"\";s:15:\"adsense_space_3\";s:0:\"\";s:16:\"houzez_walkscore\";s:1:\"0\";s:20:\"houzez_walkscore_api\";s:0:\"\";s:11:\"houzez_yelp\";s:1:\"0\";s:19:\"houzez_yelp_api_key\";s:0:\"\";s:16:\"houzez_yelp_term\";a:4:{i:0;s:9:\"education\";i:1;s:4:\"food\";i:2;s:6:\"health\";i:3;s:10:\"realestate\";}s:17:\"houzez_yelp_limit\";s:1:\"3\";s:21:\"houzez_yelp_dist_unit\";s:5:\"miles\";s:19:\"schedule_time_slots\";s:128:\"10:00 am, 10:15 pm, 10:30 pm, 12:00 pm, 12:15 pm, 12:30 pm, 12:45 pm, 01:00 pm, 01:15 pm, 01:30 pm, 01:45 pm, 02:00 pm, 05:00 pm\";s:12:\"icon_prop_id\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-1.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"icon_bedrooms\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-2.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:10:\"icon_rooms\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"icon_bathrooms\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-3.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"icon_prop_size\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-4.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"icon_prop_land\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-4.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"icon_garage_size\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-5.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"icon_garage\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-6.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"icon_year\";a:5:{s:3:\"url\";s:74:\"http://lantern-realty.com/wp-content/themes/houzez/images/icons/icon-7.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"mcal_down_payment\";s:2:\"15\";s:10:\"mcal_terms\";s:2:\"12\";s:18:\"mcal_interest_rate\";s:3:\"3.5\";s:20:\"mcal_prop_tax_enable\";s:1:\"1\";s:13:\"mcal_prop_tax\";s:4:\"3000\";s:14:\"mcal_hi_enable\";s:1:\"1\";s:7:\"mcal_hi\";s:4:\"1000\";s:15:\"mcal_pmi_enable\";s:1:\"1\";s:8:\"mcal_pmi\";s:4:\"1000\";s:25:\"houzez_similer_properties\";s:1:\"0\";s:30:\"houzez_similer_properties_type\";a:1:{i:0;s:13:\"property_type\";}s:13:\"similar_order\";s:6:\"d_date\";s:30:\"houzez_similer_properties_view\";s:0:\"\";s:31:\"houzez_similer_properties_count\";s:1:\"4\";s:16:\"property_reviews\";s:1:\"1\";s:34:\"property_reviews_approved_by_admin\";s:1:\"0\";s:22:\"update_review_approved\";s:1:\"0\";s:13:\"num_of_review\";s:1:\"5\";s:22:\"single_prop_breadcrumb\";s:13:\"property_type\";s:21:\"enable_next_prev_prop\";s:1:\"0\";s:17:\"enable_disclaimer\";s:1:\"1\";s:19:\"property_disclaimer\";s:0:\"\";s:15:\"print_page_logo\";a:5:{s:3:\"url\";s:84:\"http://lantern-realty.com/wp-content/themes/houzez/images/logo/houzez-logo-print.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"print_agent\";s:1:\"1\";s:17:\"print_description\";s:1:\"1\";s:13:\"print_details\";s:1:\"1\";s:14:\"print_features\";s:1:\"1\";s:18:\"print_energy_class\";s:1:\"1\";s:16:\"print_floorplans\";s:1:\"1\";s:13:\"print_gallery\";s:1:\"0\";s:13:\"print_gr_code\";s:1:\"1\";s:16:\"submit_form_type\";s:5:\"mstep\";s:23:\"listings_admin_approved\";s:3:\"yes\";s:28:\"edit_listings_admin_approved\";s:2:\"no\";s:19:\"enable_multi_agents\";s:1:\"0\";s:20:\"range-bedsroomsbaths\";s:1:\"0\";s:8:\"ams_type\";s:1:\"0\";s:10:\"ams_status\";s:1:\"0\";s:9:\"ams_label\";s:1:\"0\";s:18:\"location_dropdowns\";s:2:\"no\";s:19:\"area_prefix_default\";s:4:\"SqFt\";s:22:\"area_prefix_changeable\";s:1:\"1\";s:16:\"auto_property_id\";s:1:\"0\";s:19:\"property_id_pattern\";s:4:\"{ID}\";s:18:\"property_id_prefix\";s:0:\"\";s:15:\"max_prop_images\";s:2:\"10\";s:19:\"image_max_file_size\";s:6:\"1000kb\";s:20:\"max_prop_attachments\";s:1:\"3\";s:24:\"attachment_max_file_size\";s:6:\"3000kb\";s:22:\"property_form_sections\";a:2:{s:7:\"enabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:17:\"description-price\";s:19:\"Description & Price\";s:5:\"media\";s:14:\"Property Media\";s:7:\"details\";s:16:\"Property Details\";s:8:\"features\";s:17:\"Property Features\";s:8:\"location\";s:17:\"Property Location\";s:12:\"virtual_tour\";s:18:\"360° Virtual Tour\";s:10:\"floorplans\";s:11:\"Floor Plans\";s:11:\"multi-units\";s:28:\"Multi Units / Sub Properties\";s:10:\"agent_info\";s:17:\"Agent Information\";s:12:\"private_note\";s:13:\"Private Notes\";}s:8:\"disabled\";a:3:{s:7:\"placebo\";s:7:\"placebo\";s:11:\"attachments\";s:11:\"Attachments\";s:12:\"energy_class\";s:12:\"Energy Class\";}}s:18:\"adp_details_fields\";a:2:{s:7:\"enabled\";a:11:{s:7:\"placebo\";s:7:\"placebo\";s:4:\"beds\";s:8:\"Bedrooms\";s:5:\"baths\";s:9:\"Bathrooms\";s:9:\"area-size\";s:9:\"Area Size\";s:14:\"area-size-unit\";s:14:\"Area Size Unit\";s:9:\"land-area\";s:9:\"Land Area\";s:14:\"land-area-unit\";s:14:\"Land Area Unit\";s:6:\"garage\";s:6:\"Garage\";s:11:\"garage-size\";s:11:\"Garage Size\";s:11:\"property-id\";s:11:\"Property ID\";s:4:\"year\";s:10:\"Year Built\";}s:8:\"disabled\";a:2:{s:7:\"placebo\";s:7:\"placebo\";s:5:\"rooms\";s:5:\"Rooms\";}}s:20:\"hide_add_prop_fields\";a:16:{s:9:\"prop_type\";s:0:\"\";s:11:\"prop_status\";s:0:\"\";s:10:\"prop_label\";s:0:\"\";s:15:\"sale_rent_price\";s:0:\"\";s:12:\"second_price\";s:0:\"\";s:13:\"price_postfix\";s:0:\"\";s:12:\"price_prefix\";s:0:\"\";s:9:\"video_url\";s:0:\"\";s:12:\"neighborhood\";s:0:\"\";s:4:\"city\";s:0:\"\";s:11:\"postal_code\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:0:\"\";s:3:\"map\";s:0:\"\";s:11:\"map_address\";s:0:\"\";s:18:\"additional_details\";s:0:\"\";}s:18:\"enable_title_limit\";s:1:\"0\";s:20:\"property_title_limit\";s:0:\"\";s:15:\"required_fields\";a:21:{s:5:\"title\";s:1:\"1\";s:9:\"prop_type\";s:0:\"\";s:11:\"prop_status\";s:0:\"\";s:11:\"prop_labels\";s:0:\"\";s:15:\"sale_rent_price\";s:1:\"1\";s:17:\"prop_second_price\";s:0:\"\";s:11:\"price_label\";s:0:\"\";s:7:\"prop_id\";s:0:\"\";s:8:\"bedrooms\";s:0:\"\";s:5:\"rooms\";s:0:\"\";s:9:\"bathrooms\";s:0:\"\";s:9:\"area_size\";s:1:\"1\";s:9:\"land_area\";s:0:\"\";s:7:\"garages\";s:0:\"\";s:10:\"year_built\";s:0:\"\";s:12:\"energy_class\";s:0:\"\";s:20:\"property_map_address\";s:1:\"1\";s:7:\"country\";s:0:\"\";s:5:\"state\";s:0:\"\";s:4:\"city\";s:0:\"\";s:4:\"area\";s:0:\"\";}s:18:\"main-search-enable\";s:1:\"0\";s:12:\"search_style\";s:7:\"style_1\";s:12:\"search_width\";s:9:\"container\";s:15:\"search_position\";s:9:\"under_nav\";s:12:\"search_pages\";s:9:\"all_pages\";s:18:\"single_prop_search\";s:1:\"0\";s:11:\"is_tax_page\";s:1:\"1\";s:19:\"single_agent_search\";s:1:\"0\";s:21:\"search_top_row_fields\";s:1:\"3\";s:14:\"search_builder\";a:2:{s:7:\"enabled\";a:15:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";s:5:\"price\";s:23:\"Price (Only Search v.3)\";}s:8:\"disabled\";a:9:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";s:6:\"garage\";s:6:\"Garage\";s:10:\"year-built\";s:10:\"Year Built\";}}s:20:\"enable_radius_search\";s:1:\"0\";s:11:\"price_range\";s:1:\"0\";s:18:\"price_range_mobile\";s:1:\"1\";s:21:\"search_other_features\";s:1:\"0\";s:28:\"search_other_features_mobile\";s:1:\"0\";s:21:\"header-search-visible\";s:1:\"0\";s:18:\"main-search-sticky\";s:1:\"0\";s:20:\"mobile-search-sticky\";s:1:\"0\";s:35:\"enable_advanced_search_over_headers\";s:1:\"0\";s:28:\"adv_search_which_header_show\";a:5:{s:10:\"header_map\";s:1:\"1\";s:12:\"header_video\";s:0:\"\";s:12:\"header_image\";s:0:\"\";s:9:\"header_rs\";s:0:\"\";s:9:\"header_ps\";s:0:\"\";}s:28:\"adv_search_over_header_pages\";s:9:\"only_home\";s:20:\"keep_adv_search_live\";s:1:\"1\";s:26:\"dock_search_top_row_fields\";s:1:\"3\";s:19:\"dock_search_builder\";a:2:{s:7:\"enabled\";a:14:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";}s:8:\"disabled\";a:9:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";s:6:\"garage\";s:6:\"Garage\";s:10:\"year-built\";s:10:\"Year Built\";}}s:18:\"dock_radius_search\";s:1:\"0\";s:16:\"dock_price_range\";s:1:\"0\";s:26:\"dock_search_other_features\";s:1:\"0\";s:21:\"enable_halfmap_search\";s:1:\"1\";s:21:\"halfmap_search_layout\";s:2:\"v4\";s:29:\"search_top_row_fields_halfmap\";s:1:\"3\";s:22:\"search_builder_halfmap\";a:2:{s:7:\"enabled\";a:15:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";s:5:\"price\";s:23:\"Price (Only Search v.3)\";}s:8:\"disabled\";a:9:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";s:6:\"garage\";s:6:\"Garage\";s:10:\"year-built\";s:10:\"Year Built\";}}s:28:\"enable_radius_search_halfmap\";s:1:\"1\";s:19:\"price_range_halfmap\";s:1:\"1\";s:29:\"search_other_features_halfmap\";s:1:\"1\";s:22:\"halfmap-search-visible\";s:1:\"0\";s:18:\"splash_v1_dropdown\";s:13:\"property_city\";s:18:\"banner_search_tabs\";s:1:\"0\";s:10:\"tabs_limit\";s:1:\"2\";s:20:\"banner_radius_search\";s:1:\"0\";s:13:\"keyword_field\";s:12:\"prop_address\";s:20:\"keyword_autocomplete\";s:1:\"0\";s:17:\"beds_baths_search\";s:5:\"equal\";s:25:\"state_city_area_dropdowns\";s:1:\"1\";s:16:\"price_field_type\";s:6:\"select\";s:7:\"ms_type\";s:1:\"1\";s:9:\"ms_status\";s:1:\"0\";s:8:\"ms_label\";s:1:\"0\";s:7:\"ms_area\";s:1:\"1\";s:21:\"houzez_default_radius\";s:2:\"50\";s:11:\"radius_unit\";s:2:\"km\";s:14:\"features_limit\";s:2:\"-1\";s:26:\"enable_disable_save_search\";s:1:\"1\";s:20:\"save_search_duration\";s:5:\"daily\";s:9:\"min_price\";s:124:\"1000,5000,10000,50000,100000,200000,300000,400000,500000,600000,700000,800000,900000,1000000,1500000,2000000,2500000,5000000\";s:9:\"max_price\";s:128:\"5000,10000,50000,100000,200000,300000,400000,500000,600000,700000,800000,900000,1000000,1500000,2000000,2500000,5000000,10000000\";s:14:\"min_price_rent\";s:88:\"500,1000,2000,3000,4000,5000,7500,10000,15000,20000,25000,30000,40000,50000,75000,100000\";s:14:\"max_price_rent\";s:91:\"1000,2000,3000,4000,5000,7500,10000,15000,20000,25000,30000,40000,50000,75000,100000,150000\";s:32:\"advanced_search_widget_min_price\";s:3:\"200\";s:32:\"advanced_search_widget_max_price\";s:7:\"2500000\";s:40:\"advanced_search_min_price_range_for_rent\";s:2:\"50\";s:40:\"advanced_search_max_price_range_for_rent\";s:5:\"25000\";s:13:\"adv_beds_list\";s:20:\"1,2,3,4,5,6,7,8,9,10\";s:14:\"adv_rooms_list\";s:20:\"1,2,3,4,5,6,7,8,9,10\";s:14:\"adv_baths_list\";s:20:\"1,2,3,4,5,6,7,8,9,10\";s:18:\"search_result_page\";s:11:\"normal_page\";s:20:\"search_result_layout\";s:12:\"left-sidebar\";s:26:\"search_result_posts_layout\";s:0:\"\";s:20:\"search_default_order\";s:0:\"\";s:16:\"search_num_posts\";s:1:\"9\";s:17:\"houzez_map_system\";s:3:\"osm\";s:17:\"googlemap_api_key\";s:0:\"\";s:14:\"mapbox_api_key\";s:0:\"\";s:15:\"houzez_map_type\";s:7:\"roadmap\";s:15:\"markerPricePins\";s:2:\"no\";s:17:\"short_prices_pins\";s:1:\"0\";s:17:\"marker_spiderfier\";s:1:\"0\";s:15:\"map_default_lat\";s:9:\"25.686540\";s:16:\"map_default_long\";s:10:\"-80.431345\";s:17:\"geo_country_limit\";s:1:\"0\";s:19:\"geocomplete_country\";s:0:\"\";s:18:\"map_cluster_enable\";s:1:\"1\";s:11:\"map_cluster\";a:5:{s:3:\"url\";s:78:\"http://lantern-realty.com/wp-content/themes/houzez/images/map/cluster-icon.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:22:\"googlemap_zoom_cluster\";s:2:\"10\";s:19:\"detail_map_pin_type\";s:6:\"marker\";s:14:\"single_mapzoom\";s:2:\"14\";s:15:\"googlemap_stype\";s:0:\"\";s:20:\"halfmap_posts_layout\";s:12:\"list-view-v1\";s:20:\"template_sidebar_pos\";s:0:\"\";s:15:\"disable_compare\";s:1:\"0\";s:16:\"disable_favorite\";s:1:\"0\";s:15:\"disable_preview\";s:1:\"1\";s:15:\"disable_address\";s:1:\"1\";s:13:\"disable_agent\";s:1:\"0\";s:12:\"disable_date\";s:1:\"0\";s:18:\"disable_detail_btn\";s:1:\"1\";s:12:\"disable_type\";s:1:\"1\";s:14:\"disable_status\";s:1:\"1\";s:13:\"disable_label\";s:1:\"1\";s:21:\"listing_data_composer\";a:2:{s:7:\"enabled\";a:4:{s:7:\"placebo\";s:7:\"placebo\";s:3:\"bed\";s:8:\"Bedrooms\";s:4:\"bath\";s:9:\"Bathrooms\";s:9:\"area-size\";s:9:\"Area Size\";}s:8:\"disabled\";a:5:{s:7:\"placebo\";s:7:\"placebo\";s:9:\"land-area\";s:9:\"Land Area\";s:6:\"garage\";s:6:\"Garage\";s:11:\"property-id\";s:11:\"Property ID\";s:4:\"room\";s:5:\"Rooms\";}}s:24:\"listing_address_composer\";a:2:{s:7:\"enabled\";a:2:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"address\";s:7:\"Address\";}s:8:\"disabled\";a:6:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:7:\"Country\";s:5:\"state\";s:5:\"State\";s:4:\"city\";s:4:\"City\";s:4:\"area\";s:4:\"Area\";s:14:\"streat-address\";s:14:\"Streat Address\";}}s:10:\"icons_type\";s:14:\"houzez-default\";s:3:\"bed\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:6:\"fa_bed\";s:0:\"\";s:4:\"room\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"fa_room\";s:0:\"\";s:4:\"bath\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"fa_bath\";s:0:\"\";s:6:\"garage\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"fa_garage\";s:0:\"\";s:9:\"area-size\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"fa_area-size\";s:0:\"\";s:9:\"land-area\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"fa_land-area\";s:0:\"\";s:10:\"year-built\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"fa_year-built\";s:0:\"\";s:11:\"property-id\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"fa_property-id\";s:0:\"\";s:14:\"v1_4_meta_type\";s:5:\"icons\";s:12:\"v2_meta_type\";s:5:\"icons\";s:17:\"preview_meta_type\";s:10:\"icons_text\";s:21:\"preview_data_composer\";a:2:{s:7:\"enabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:3:\"bed\";s:8:\"Bedrooms\";s:4:\"bath\";s:9:\"Bathrooms\";s:6:\"garage\";s:6:\"Garage\";s:9:\"area-size\";s:9:\"Area Size\";s:9:\"land-area\";s:9:\"Land Area\";s:10:\"year-built\";s:10:\"Year Built\";}s:8:\"disabled\";a:3:{s:7:\"placebo\";s:7:\"placebo\";s:11:\"property-id\";s:11:\"Property ID\";s:4:\"room\";s:5:\"Rooms\";}}s:18:\"houzez_placeholder\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"taxonomy_layout\";s:12:\"left-sidebar\";s:25:\"taxonomy_content_position\";s:5:\"above\";s:21:\"taxonomy_posts_layout\";s:0:\"\";s:22:\"taxonomy_default_order\";s:6:\"d_date\";s:18:\"taxonomy_num_posts\";s:1:\"9\";s:9:\"form_type\";s:11:\"custom_form\";s:15:\"terms_condition\";s:0:\"\";s:30:\"contact_form_agent_above_image\";s:0:\"\";s:25:\"contact_form_agent_bottom\";s:0:\"\";s:23:\"schedule_tour_shortcode\";s:0:\"\";s:25:\"contact_form_agent_detail\";s:0:\"\";s:26:\"contact_form_agency_detail\";s:0:\"\";s:22:\"agent_form_above_image\";s:1:\"0\";s:18:\"agent_form_sidebar\";s:1:\"0\";s:18:\"agent_form_gallery\";s:1:\"0\";s:21:\"agent_form_agent_page\";s:1:\"1\";s:23:\"agency_form_agency_page\";s:1:\"1\";s:18:\"agent_view_listing\";s:1:\"0\";s:15:\"agent_phone_num\";s:1:\"1\";s:16:\"agent_mobile_num\";s:1:\"1\";s:18:\"agent_whatsapp_num\";s:1:\"1\";s:21:\"agent_direct_messages\";s:1:\"0\";s:15:\"agent_skype_con\";s:1:\"1\";s:16:\"agent_con_social\";s:1:\"1\";s:29:\"hide_prop_contact_form_fields\";a:4:{s:4:\"name\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:7:\"message\";s:0:\"\";s:8:\"usertype\";s:0:\"\";}s:37:\"hide_agency_agent_contact_form_fields\";a:4:{s:4:\"name\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:7:\"message\";s:0:\"\";s:8:\"usertype\";s:0:\"\";}s:23:\"gdpr_and_terms_checkbox\";s:1:\"1\";s:19:\"agent_form_redirect\";s:0:\"\";s:18:\"houzez_webhook_url\";s:0:\"\";s:30:\"webhook_property_agent_contact\";s:1:\"0\";s:21:\"webhook_agent_contact\";s:1:\"0\";s:22:\"webhook_agency_contact\";s:1:\"0\";s:16:\"add_new_property\";s:1:\"0\";s:16:\"enable_reCaptcha\";s:1:\"1\";s:13:\"recaptha_type\";s:2:\"v2\";s:17:\"recaptha_site_key\";s:40:\"6LfXgNYZAAAAAOBEx0Em2yCeUBlEsFZP8aiFC1g2\";s:19:\"recaptha_secret_key\";s:40:\"6LfXgNYZAAAAAOsnMaO1YC_KYp-dqH8aR9bu1BJ1\";s:22:\"enable_paid_submission\";s:2:\"no\";s:24:\"houzez_disable_recurring\";s:1:\"0\";s:21:\"houzez_auto_recurring\";s:1:\"0\";s:28:\"per_listing_expire_unlimited\";s:1:\"0\";s:18:\"per_listing_expire\";s:2:\"30\";s:24:\"currency_paid_submission\";s:3:\"USD\";s:24:\"price_listing_submission\";s:0:\"\";s:33:\"price_featured_listing_submission\";s:0:\"\";s:10:\"paypal_api\";s:7:\"sandbox\";s:23:\"payment_terms_condition\";s:0:\"\";s:14:\"thankyou_title\";s:35:\"Thank you for your business with us\";s:12:\"thankyou_des\";s:223:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer in augue rhoncus, congue neque eu, consequat quam. Maecenas in cursus dui, sed tempor est. Duis varius nibh in lorem venenatis, in tincidunt nunc scelerisque.\";s:23:\"houzez_payment_gateways\";s:16:\"houzez_custom_gw\";s:13:\"enable_paypal\";s:1:\"0\";s:16:\"paypal_client_id\";s:0:\"\";s:24:\"paypal_client_secret_key\";s:0:\"\";s:22:\"paypal_receiving_email\";s:0:\"\";s:13:\"enable_stripe\";s:1:\"0\";s:17:\"stripe_secret_key\";s:0:\"\";s:22:\"stripe_publishable_key\";s:0:\"\";s:19:\"enable_wireTransfer\";s:1:\"0\";s:26:\"direct_payment_instruction\";s:0:\"\";s:19:\"thankyou_wire_title\";s:39:\"Thank you. Your order has been received\";s:17:\"thankyou_wire_des\";s:96:\"Make your payment directly into our bank account. Please use your Order ID as payment reference.\";s:13:\"num_of_agents\";s:1:\"9\";s:10:\"agent_tabs\";s:1:\"0\";s:21:\"agent_listings_layout\";s:12:\"list-view-v1\";s:21:\"num_of_agent_listings\";s:2:\"10\";s:20:\"agent_listings_order\";s:7:\"default\";s:12:\"agent_mobile\";s:1:\"1\";s:11:\"agent_phone\";s:1:\"1\";s:9:\"agent_fax\";s:1:\"1\";s:11:\"agent_email\";s:1:\"1\";s:13:\"agent_website\";s:1:\"1\";s:12:\"agent_social\";s:1:\"1\";s:11:\"agent_stats\";s:1:\"0\";s:12:\"agent_review\";s:1:\"0\";s:14:\"agent_listings\";s:1:\"0\";s:9:\"agent_bio\";s:1:\"1\";s:13:\"agent_sidebar\";s:1:\"1\";s:15:\"num_of_agencies\";s:1:\"9\";s:11:\"agency_tabs\";s:1:\"0\";s:22:\"agency_listings_layout\";s:12:\"list-view-v1\";s:22:\"num_of_agency_listings\";s:2:\"10\";s:21:\"agency_listings_order\";s:7:\"default\";s:14:\"agency_address\";s:1:\"1\";s:13:\"agency_mobile\";s:1:\"1\";s:12:\"agency_phone\";s:1:\"1\";s:10:\"agency_fax\";s:1:\"1\";s:12:\"agency_email\";s:1:\"1\";s:14:\"agency_website\";s:1:\"1\";s:13:\"agency_social\";s:1:\"1\";s:12:\"agency_stats\";s:1:\"0\";s:13:\"agency_review\";s:1:\"0\";s:13:\"agency_agents\";s:1:\"1\";s:15:\"agency_listings\";s:1:\"0\";s:10:\"agency_bio\";s:1:\"1\";s:14:\"agency_sidebar\";s:1:\"1\";s:12:\"invoice_logo\";a:5:{s:3:\"url\";s:84:\"http://lantern-realty.com/wp-content/themes/houzez/images/logo/houzez-logo-print.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"invoice_company_name\";s:12:\"Company Name\";s:15:\"invoice_address\";s:52:\"1161 Washingtown Avenue 299<br> Miami Beach 33141 FL\";s:13:\"invoice_phone\";s:13:\"(987)654 3210\";s:23:\"invoice_additional_info\";s:222:\"The lorem ipsum text is typically a scrambled section of De finibus bonorum et malorum, a 1st-century BC Latin text by Cicero, with words altered, added, and removed to make it nonsensical, improper Latin.[citation needed]\";s:16:\"invoice_thankyou\";s:36:\"Thank you for your business with us.\";s:17:\"masorny_num_posts\";s:2:\"12\";s:19:\"blog_featured_image\";s:1:\"1\";s:9:\"blog_date\";s:1:\"1\";s:11:\"blog_author\";s:1:\"1\";s:9:\"blog_tags\";s:1:\"1\";s:15:\"blog_author_box\";s:1:\"1\";s:14:\"blog_next_prev\";s:1:\"1\";s:18:\"blog_related_posts\";s:1:\"1\";s:18:\"enable_html_emails\";s:1:\"1\";s:19:\"enable_email_header\";s:1:\"1\";s:15:\"email_head_logo\";a:5:{s:3:\"url\";s:84:\"http://lantern-realty.com/wp-content/themes/houzez/images/logo/logo-houzez-white.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:19:\"email_head_bg_color\";s:7:\"#00AEEF\";s:19:\"enable_email_footer\";s:1:\"1\";s:19:\"email_foot_bg_color\";s:7:\"#FFFFFF\";s:20:\"email_footer_content\";s:449:\"<p style=\"margin: 0 0 10px;\">Copyright © 2018 Favethemes, All rights reserved.</p>\r\n<p style=\"margin: 0 0 10px;\">Please do not reply to this email. You are receiving this email because you are subscribed to <a style=\"color: #00aeef; text-decoration: none;\" href=\"http://houzez.co\">Houzez.co</a></p>\r\n<p style=\"margin: 0 0 10px;\">Our mailing address is:</p>\r\n<p style=\"margin: 0 0 10px;\">Favethemes\r\n1680 Michigan Ave\r\nMiami Beach, FL 33139-2538</p>\";s:13:\"social_1_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"social_1_link\";s:0:\"\";s:13:\"social_2_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"social_2_link\";s:0:\"\";s:13:\"social_3_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"social_3_link\";s:0:\"\";s:13:\"social_4_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"social_4_link\";s:0:\"\";s:37:\"houzez_subject_property_agent_contact\";s:74:\"New message sent by %sender_name using agent contact form at %website_name\";s:29:\"houzez_property_agent_contact\";s:289:\"You have received new message from: %sender_name\r\nProperty Title : %property_title\r\nProperty URL : %property_link\r\nProperty ID : %property_id\r\nPhone Number : %sender_phone\r\nUser Type : %user_type\r\nAdditional message is\r\n%sender_message\r\nYou can contact %sender_name via email %sender_email\";s:37:\"houzez_subject_property_schedule_tour\";s:77:\"New message sent by %sender_name using schedule contact form at %website_name\";s:29:\"houzez_property_schedule_tour\";s:289:\"You have received new message from: %sender_name\r\nProperty Title : %property_title\r\nProperty URL : %property_link\r\nDate &amp; Time : %schedule_date at %schedule_time\r\nPhone Number : %sender_phone\r\nAdditional message is\r\n%sender_message\r\nYou can contact %sender_name via email %sender_email\";s:32:\"houzez_subject_new_user_register\";s:42:\"Your username and password on %website_url\";s:24:\"houzez_new_user_register\";s:202:\"Hi there,\r\nWelcome to %website_url! You can login now using the below credentials:\r\nUsername:%user_login_register\r\nPassword: %user_pass_register\r\nIf you have any problems, please contact us.\r\nThank you!\";s:38:\"houzez_subject_admin_new_user_register\";s:21:\"New User Registration\";s:30:\"houzez_admin_new_user_register\";s:101:\"New user registration on %website_url.\r\nUsername: %user_login_register,\r\nE-mail: %user_email_register\";s:38:\"houzez_subject_purchase_activated_pack\";s:27:\"Your purchase was activated\";s:30:\"houzez_purchase_activated_pack\";s:288:\"Hi there,\r\nWelcome to %website_url and thank you for purchasing a plan with us. We are excited you have chosen %website_name . %website_name is a great place to advertise and search properties.\r\n\r\nYou plan on %website_url activated! You can now list your properties according to you plan.\";s:33:\"houzez_subject_purchase_activated\";s:27:\"Your purchase was activated\";s:25:\"houzez_purchase_activated\";s:86:\"Hi there,\r\nYour purchase on %website_url is activated! You should go and check it out.\";s:31:\"houzez_subject_listing_approved\";s:21:\"Your listing approved\";s:23:\"houzez_listing_approved\";s:117:\"Hi there,\r\nYour listing on %website_url has been approved.\r\n\r\nListins Title:%listing_title\r\nListing Url: %listing_url\";s:30:\"houzez_subject_listing_expired\";s:20:\"Your listing expired\";s:22:\"houzez_listing_expired\";s:116:\"Hi there,\r\nYour listing on %website_url has been expired.\r\n\r\nListins Title:%listing_title\r\nListing Url: %listing_url\";s:32:\"houzez_subject_new_wire_transfer\";s:31:\"You ordered a new Wire Transfer\";s:24:\"houzez_new_wire_transfer\";s:255:\"We received your Wire Transfer payment request on %website_url !\r\nPlease follow the instructions below in order to start submitting properties as soon as possible.\r\nThe invoice number is: %invoice_no, Amount: %total_price.\r\nInstructions: %payment_details.\";s:38:\"houzez_subject_admin_new_wire_transfer\";s:36:\"Somebody ordered a new Wire Transfer\";s:30:\"houzez_admin_new_wire_transfer\";s:255:\"We received your Wire Transfer payment request on %website_url !\r\nPlease follow the instructions below in order to start submitting properties as soon as possible.\r\nThe invoice number is: %invoice_no, Amount: %total_price.\r\nInstructions: %payment_details.\";s:38:\"houzez_subject_paid_submission_listing\";s:32:\"Your new listing on %website_url\";s:30:\"houzez_paid_submission_listing\";s:150:\"Hi there,\r\nYou have submitted new listing on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\r\nThe invoice number is: %invoice_no\";s:44:\"houzez_subject_admin_paid_submission_listing\";s:35:\"New paid submission on %website_url\";s:36:\"houzez_admin_paid_submission_listing\";s:150:\"Hi there,\r\nYou have a new paid submission on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\r\nThe invoice number is: %invoice_no\";s:42:\"houzez_subject_featured_submission_listing\";s:36:\"New featured upgrade on %website_url\";s:34:\"houzez_featured_submission_listing\";s:154:\"Hi there,\r\nYou have a new featured submission on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\r\nThe invoice number is: %invoice_no\";s:48:\"houzez_subject_admin_featured_submission_listing\";s:39:\"New featured submission on %website_url\";s:40:\"houzez_admin_featured_submission_listing\";s:154:\"Hi there,\r\nYou have a new featured submission on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\r\nThe invoice number is: %invoice_no\";s:38:\"houzez_subject_free_submission_listing\";s:32:\"Your new listing on %website_url\";s:30:\"houzez_free_submission_listing\";s:144:\"Hi there,&lt;br&gt;\r\nYou have submitted new listing on %website_url!&lt;br&gt;\r\nListing Title: %listing_title&lt;br&gt;\r\nListing ID: %listing_id\";s:44:\"houzez_subject_admin_free_submission_listing\";s:30:\"New submission on %website_url\";s:36:\"houzez_admin_free_submission_listing\";s:109:\"Hi there,\r\nYou have a new submission on %website_url!\r\nListing Title: %listing_title\r\nListing ID: %listing_id\";s:35:\"houzez_subject_free_listing_expired\";s:36:\"Free Listing expired on %website_url\";s:27:\"houzez_free_listing_expired\";s:116:\"Hi there,\r\nOne of your free listings on %website_url has \"expired\". The listing is %expired_listing_url.\r\nThank you!\";s:37:\"houzez_subject_admin_expired_listings\";s:49:\"Expired Listing sent for approval on %website_url\";s:29:\"houzez_admin_expired_listings\";s:145:\"Hi there,\r\nA user has re-submited a new property on %website_url! You should go and check it out.\r\nThis is the property title: %submission_title.\";s:35:\"houzez_subject_matching_submissions\";s:36:\"Matching Submissions on %website_url\";s:27:\"houzez_matching_submissions\";s:275:\"<div class=\"title\">\r\n<h1 style=\"font-size: 20px; line-height: 30px; margin: 0 0 10px;\">New Suggested Properties</h1>\r\n<p style=\"margin: 0 0 30px; color: #777777;\">We have found %listing_count new properties that match your saved searches.</p>\r\n\r\n</div>\r\n%matching_submissions\";s:32:\"houzez_subject_recurring_payment\";s:33:\"Recurring Payment on %website_url\";s:24:\"houzez_recurring_payment\";s:116:\"Hi there,\r\nWe charged your account on %merchant for a subscription on %website_url ! You should go and check it out.\";s:35:\"houzez_subject_membership_cancelled\";s:36:\"Membership Cancelled on %website_url\";s:27:\"houzez_membership_cancelled\";s:236:\"Hi there,\r\nYour subscription on %website_url was cancelled because it expired or the recurring payment from the merchant was not processed. All your listings are no longer visible for our visitors but remain in your account.\r\nThank you.\";s:22:\"banner_slider_autoplay\";s:1:\"1\";s:18:\"banner_slider_loop\";s:1:\"1\";s:27:\"banner_slider_autoplayspeed\";s:4:\"4000\";s:9:\"404-title\";s:21:\"Oops! Page not found.\";s:7:\"404-des\";s:152:\"We\'re sorry, but the page you are looking for doesn\'t exist.<br>                You can search your topic using the box below or return to the homepage.\";s:11:\"footer_cols\";s:10:\"three_cols\";s:9:\"ft-bottom\";s:2:\"v1\";s:11:\"footer_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"copy_rights\";s:52:\"Lantern Realty and Development - All rights reserved\";s:13:\"social-footer\";s:1:\"1\";s:11:\"fs-facebook\";s:39:\"https://www.facebook.com/lanternrealty/\";s:10:\"fs-twitter\";s:0:\"\";s:13:\"fs-googleplus\";s:0:\"\";s:11:\"fs-linkedin\";s:0:\"\";s:12:\"fs-instagram\";s:0:\"\";s:12:\"fs-pinterest\";s:0:\"\";s:7:\"fs-yelp\";s:0:\"\";s:10:\"fs-behance\";s:0:\"\";s:10:\"fs-youtube\";s:0:\"\";s:13:\"js_all_in_one\";s:1:\"1\";s:14:\"css_all_in_one\";s:1:\"1\";s:9:\"minify_js\";s:1:\"1\";s:10:\"minify_css\";s:1:\"1\";s:22:\"remove_scripts_version\";s:1:\"0\";s:13:\"preload_pages\";s:1:\"0\";s:15:\"lazyload_images\";s:1:\"0\";s:13:\"disable_emoji\";s:1:\"1\";s:8:\"jpeg_100\";s:1:\"0\";s:21:\"add-prop-gdpr-enabled\";s:1:\"0\";s:19:\"add-prop-gdpr-label\";s:93:\"I consent to having this website to store my submitted infomation, read more infomation below\";s:31:\"add-prop-gdpr-agreement-content\";s:2029:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed risus lacus, sollicitudin at finibus at, pretium id dui. Nunc erat felis, pharetra id feugiat et, faucibus a justo. Donec eu condimentum nisi. Integer facilisis luctus massa, sit amet commodo nulla vehicula ac. Fusce vehicula nibh magna, in efficitur elit euismod eget. Quisque egestas consectetur diam, eu facilisis justo vestibulum a. Aenean facilisis volutpat orci. Mauris in pellentesque nulla. Maecenas justo felis, vestibulum non cursus sit amet, blandit et velit.\r\n\r\nVivamus a commodo urna. In hac habitasse platea dictumst. Ut tincidunt est sed accumsan aliquet. Sed fringilla volutpat bibendum. Nunc fermentum massa vitae iaculis pulvinar. Integer hendrerit auctor risus et luctus. Donec convallis luctus ultrices. Maecenas scelerisque sed purus ac hendrerit. Nulla vel facilisis magna.\r\n\r\nSuspendisse hendrerit enim in tellus pharetra cursus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer sed laoreet nisl. Nullam feugiat ut enim id tempor. Nunc euismod nec dui at suscipit. Duis sit amet cursus nibh. Mauris tincidunt ante quis augue accumsan, quis porttitor ipsum bibendum. Vivamus congue arcu sit amet arcu imperdiet, a laoreet ligula auctor. Aliquam ultrices porttitor malesuada.\r\n\r\nMauris erat quam, condimentum quis lacinia sed, suscipit in nisi. Etiam eleifend tristique pellentesque. Duis a odio neque. Quisque mollis velit enim, in mollis arcu blandit vel. Praesent accumsan nisi odio, vitae semper neque faucibus in. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aliquam pellentesque neque sem. Donec vehicula, lacus vitae gravida tempus, lorem felis faucibus est, sed dapibus velit tortor nec velit.\r\n\r\nAliquam convallis id metus eu venenatis. Morbi nec augue turpis. Suspendisse tincidunt massa vitae malesuada mollis. Donec suscipit feugiat porttitor. Sed pharetra auctor enim. Cras faucibus in metus eu ultrices. Mauris vitae vehicula sapien.\";s:10:\"custom_css\";s:353:\"#ihf-main-container .carousel-control {\r\n   height: auto;\r\n   background: none;\r\n   border: none;\r\n}\r\n#ihf-main-container .carousel-caption {\r\n    background: none;\r\n}\r\n#ihf-main-container .modal {\r\n    width: auto;\r\n    margin-left: 0;\r\n    background-color: transparent;\r\n    border: 0;\r\n}\r\n.ihf-results-links > a:nth-child(1) {\r\n    display: none;\r\n}\";s:16:\"custom_js_header\";s:1198:\"<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-125820020-1\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-125820020-1\');\r\n</script>\r\n\r\n<!-- Facebook Pixel Code -->\r\n<script>\r\n  !function(f,b,e,v,n,t,s)\r\n  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?\r\n  n.callMethod.apply(n,arguments):n.queue.push(arguments)};\r\n  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=\'2.0\';\r\n  n.queue=[];t=b.createElement(e);t.async=!0;\r\n  t.src=v;s=b.getElementsByTagName(e)[0];\r\n  s.parentNode.insertBefore(t,s)}(window, document,\'script\',\r\n  \'https://connect.facebook.net/en_US/fbevents.js\');\r\n  fbq(\'init\', \'1067910506723247\');\r\n  fbq(\'track\', \'PageView\');\r\n</script>\r\n<noscript><img height=\"1\" width=\"1\" style=\"display:none\"\r\n  src=\"https://www.facebook.com/tr?id=1067910506723247&ev=PageView&noscript=1\"\r\n/></noscript>\r\n<!-- End Facebook Pixel Code -->\r\n\r\n<script>\r\n(function () {\r\n    \"use strict\";\r\n    jQuery.getScript(\"/wp-content/plugins/optima-express/js/bootstrap-libs/bootstrap.min.js\");\r\n}());\r\n</script>\";s:16:\"custom_js_footer\";s:0:\"\";s:20:\"houzez_base_currency\";s:3:\"USD\";s:18:\"agent_detail_tab_1\";s:0:\"\";s:18:\"agent_detail_tab_2\";s:0:\"\";s:19:\"agency_detail_tab_1\";s:0:\"\";s:19:\"agency_detail_tab_2\";s:0:\"\";}','yes'),(349,'wpcf7','a:2:{s:7:\"version\";s:7:\"5.5.6.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1588344055;s:7:\"version\";s:5:\"5.1.7\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(1268,'widget_srp_mortgagecalc','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1269,'widget_srp_affordabilitycalc','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(350,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:16:\"themepunch.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(358,'revslider-library-check','1656458817','yes'),(359,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(351,'revslider_server_refresh','1657545551','yes'),(352,'revslider-update-check-short','1657558037','yes'),(353,'revslider-templates-check','1657367696','yes'),(360,'revslider_checktables','1','yes'),(361,'rs_tables_created','1','yes'),(362,'revslider_table_version','1.0.9','yes'),(363,'revslider-global-settings','{\"version\":\"6.2.0\",\"permission\":\"admin\",\"includeids\":\"\",\"script\":{\"footer\":false,\"defer\":false,\"full\":false},\"fonturl\":\"\",\"size\":{\"desktop\":1240,\"notebook\":1024,\"tablet\":778,\"mobile\":480}}','yes'),(1259,'widget_lidd_mc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(364,'redux_version_upgraded_from','3.6.18','yes'),(367,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(368,'widget_houzez_login_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(369,'vc_version','5.5.2','yes'),(371,'revslider_update_version','6.4.10','yes'),(372,'widget_rev-slider-widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(375,'houzez_options-transients','a:4:{s:14:\"changed_values\";a:10:{s:8:\"last_tab\";s:0:\"\";s:16:\"main-menu-sticky\";s:1:\"0\";s:14:\"search_builder\";a:2:{s:7:\"enabled\";a:15:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";s:5:\"price\";s:23:\"Price (Only Search v.3)\";}s:8:\"disabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";}}s:19:\"dock_search_builder\";a:2:{s:7:\"enabled\";a:14:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";}s:8:\"disabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";}}s:22:\"search_builder_halfmap\";a:2:{s:7:\"enabled\";a:15:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"keyword\";s:7:\"Keyword\";s:4:\"city\";s:6:\"Cities\";s:5:\"areas\";s:5:\"Areas\";s:6:\"status\";s:6:\"Status\";s:4:\"type\";s:4:\"Type\";s:8:\"bedrooms\";s:8:\"Bedrooms\";s:9:\"bathrooms\";s:9:\"Bathrooms\";s:8:\"min-area\";s:9:\"Min. Area\";s:8:\"max-area\";s:9:\"Max. Area\";s:9:\"min-price\";s:10:\"Min. Price\";s:9:\"max-price\";s:10:\"Max. Price\";s:11:\"property-id\";s:11:\"Property ID\";s:5:\"label\";s:5:\"Label\";s:5:\"price\";s:23:\"Price (Only Search v.3)\";}s:8:\"disabled\";a:7:{s:7:\"placebo\";s:7:\"placebo\";s:7:\"country\";s:9:\"Countries\";s:5:\"state\";s:6:\"States\";s:11:\"geolocation\";s:11:\"Geolocation\";s:5:\"rooms\";s:5:\"Rooms\";s:13:\"min-land-area\";s:14:\"Min. Land Area\";s:13:\"max-land-area\";s:14:\"Max. Land Area\";}}s:18:\"enable_title_limit\";i:0;s:30:\"webhook_property_agent_contact\";i:0;s:21:\"webhook_agent_contact\";i:0;s:22:\"webhook_agency_contact\";i:0;s:16:\"add_new_property\";i:0;}s:9:\"last_save\";i:1651339952;s:13:\"last_compiler\";i:1651339756;s:11:\"last_import\";i:1651339756;}','yes'),(658,'ihf-bio-agent-photo-option','https://lantern-realty.com/wp-content/uploads/2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg','yes'),(659,'ihf-bio-office-logo','','yes'),(660,'ihf-bio-agent-text-option','','yes'),(661,'ihf-agent-display-title-option','Lantern Realty and Development','yes'),(662,'ihf-agent-license-info-option','','yes'),(663,'ihf-bio-agent-designations-option','','yes'),(664,'ihf-bio-contact-phone','980-858-2074','yes'),(376,'houzez_activation','activated','yes'),(377,'wpb_js_composer_license_activation_notified','yes','yes'),(380,'mc4wp_flash_messages','a:0:{}','no'),(665,'ihf-bio-contact-email','contact@lantern-realty.com','yes'),(360276,'recovery_mode_email_last_sent','1621688484','yes'),(360591,'mec_installed','1','yes'),(360592,'mec_version','5.12.6','yes'),(401,'ihf-color-scheme','blue','yes'),(510868,'171231751_elements','a:0:{}','yes'),(510869,'171231751_custom_js','','yes'),(510870,'171231751_updated_at','1623201995','yes'),(1677,'jpsq_full_sync_checkout','0:0','no'),(1674,'jpsq_sync_checkout','0:0','no'),(1689,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1690,'widget_authors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1691,'widget_eu_cookie_law_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1692,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1693,'widget_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1694,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1695,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1697,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1698,'widget_internet_defense_league_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1699,'widget_widget_mailchimp_subscriber_popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1700,'widget_milestone_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1701,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1702,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1703,'widget_jetpack_widget_social_icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1704,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1705,'widget_upcoming_events_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1706,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1724,'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'),(1725,'post_by_email_address1','NULL','yes'),(1719,'jetpack_plugin_api_action_links','a:15:{s:25:\"add-to-any/add-to-any.php\";a:1:{s:8:\"Settings\";s:69:\"https://lantern-realty.com/wp-admin/options-general.php?page=addtoany\";}s:36:\"contact-form-7/wp-contact-form-7.php\";a:1:{s:8:\"Settings\";s:56:\"https://lantern-realty.com/wp-admin/admin.php?page=wpcf7\";}s:23:\"elementor/elementor.php\";a:2:{s:8:\"Settings\";s:60:\"https://lantern-realty.com/wp-admin/admin.php?page=elementor\";s:6:\"Go Pro\";s:102:\"https://elementor.com/pro/?utm_source=wp-plugins&utm_campaign=gopro&utm_medium=wp-dash&utm_term=houzez\";}s:43:\"favethemes-insights/favethemes-insights.php\";a:1:{s:15:\"Update Required\";s:94:\"https://lantern-realty.com/wp-admin/themes.php?page=tgmpa-install-plugins&plugin_status=update\";}s:19:\"jetpack/jetpack.php\";a:1:{s:7:\"Jetpack\";s:58:\"https://lantern-realty.com/wp-admin/admin.php?page=jetpack\";}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";a:1:{s:8:\"Settings\";s:67:\"https://lantern-realty.com/wp-admin/admin.php?page=mailchimp-for-wp\";}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";a:3:{s:15:\"Premium Support\";s:62:\"https://really-simple-ssl.com/downloads/really-simple-ssl-pro/\";s:4:\"Docs\";s:45:\"https://really-simple-ssl.com/knowledge-base/\";s:8:\"Settings\";s:86:\"https://lantern-realty.com/wp-admin/options-general.php?page=rlrsssl_really_simple_ssl\";}s:35:\"redux-framework/redux-framework.php\";a:1:{s:6:\"Go Pro\";s:99:\"https://redux.io?utm_source=plugin-installation&utm_campaign=plugin-installation&utm_medium=upgrade\";}s:23:\"revslider/revslider.php\";a:1:{s:15:\"Update Required\";s:94:\"https://lantern-realty.com/wp-admin/themes.php?page=tgmpa-install-plugins&plugin_status=update\";}s:35:\"autodescription/autodescription.php\";a:3:{s:8:\"Settings\";s:75:\"https://lantern-realty.com/wp-admin/admin.php?page=theseoframework-settings\";s:10:\"Extensions\";s:39:\"https://theseoframework.com/extensions/\";s:7:\"Pricing\";s:36:\"https://theseoframework.com/pricing/\";}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:58:\"https://lantern-realty.com/wp-admin/admin.php?page=weforms\";}s:27:\"js_composer/js_composer.php\";a:1:{s:8:\"Settings\";s:61:\"https://lantern-realty.com/wp-admin/admin.php?page=vc-general\";}s:17:\"wp-docs/index.php\";a:2:{s:8:\"Settings\";s:67:\"https://lantern-realty.com/wp-admin/options-general.php?page=wpdocs\";s:10:\"Go Premium\";s:44:\"https://lantern-realty.com/wp-admin/<a href=\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";a:2:{s:8:\"Settings\";s:63:\"https://lantern-realty.com/wp-admin/admin.php?page=wp-mail-smtp\";s:15:\"Premium Support\";s:80:\"https://lantern-realty.com/wp-admin/admin.php?page=wp-mail-smtp-about&tab=versus\";}s:27:\"wps-cleaner/wps-cleaner.php\";a:1:{s:5:\"Tools\";s:62:\"https://lantern-realty.com/wp-admin/tools.php?page=wps-cleaner\";}}','yes'),(1740,'gravatar_disable_hovercards','0','yes'),(1742,'verification_services_codes','0','yes'),(357103,'_transient_d6d5d0d31_elements','a:0:{}','yes'),(352241,'widget_wpcom_instagram_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(356643,'_transient_eael_editor_updated_at','1605059632','yes'),(356620,'eael_save_settings','a:49:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";i:1;s:12:\"gravity-form\";i:1;s:12:\"caldera-form\";i:1;s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:8:\"typeform\";i:1;s:24:\"betterdocs-category-grid\";i:1;s:23:\"betterdocs-category-box\";i:1;s:22:\"betterdocs-search-form\";i:1;s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:12:\"woo-checkout\";i:1;s:14:\"login-register\";i:1;s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:9:\"promotion\";i:1;s:9:\"custom-js\";i:1;s:16:\"reading-progress\";i:1;s:16:\"table-of-content\";i:1;s:15:\"post-duplicator\";i:1;}','yes'),(356621,'wpdeveloper_plugins_data','a:1:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:2:{s:6:\"opt_in\";i:1657681910;s:6:\"review\";i:1658287996;}s:4:\"time\";i:1653527986;s:7:\"version\";s:5:\"5.1.3\";}}','yes'),(356622,'eael_version','5.1.3','yes'),(356623,'wpins_essential_adons_elementor_force_tracked','1','yes'),(356626,'_transient_ea1d43322_elements','a:0:{}','yes'),(356627,'_transient_ea1d43322_custom_js','','yes'),(356628,'_transient_ea1d43322_updated_at','1605059632','yes'),(356632,'_transient_cb70d11b8_elements','a:0:{}','yes'),(356633,'_transient_cb70d11b8_custom_js','','yes'),(356634,'_transient_cb70d11b8_updated_at','1605059632','yes'),(356635,'_transient_5b09d4945_elements','a:0:{}','yes'),(356636,'_transient_5b09d4945_custom_js','','yes'),(356637,'_transient_5b09d4945_updated_at','1605059632','yes'),(356639,'_transient_e0658cc84_elements','a:0:{}','yes'),(356640,'_transient_e0658cc84_custom_js','','yes'),(356641,'_transient_e0658cc84_updated_at','1605059632','yes'),(356647,'_transient_1dcb97ea3_elements','a:0:{}','yes'),(356648,'_transient_1dcb97ea3_custom_js','','yes'),(356649,'_transient_1dcb97ea3_updated_at','1605059632','yes'),(356660,'_transient_0e09a8794_elements','a:0:{}','yes'),(356661,'_transient_0e09a8794_custom_js','','yes'),(356662,'_transient_0e09a8794_updated_at','1605059632','yes'),(356414,'whatshelp-code','<!-- GetButton.io widget -->\r\n<script type=\"text/javascript\">\r\n    (function () {\r\n        var options = {\r\n            facebook: \"182173195955653\", // Facebook page ID\r\n            call: \"7042980087\", // Call phone number\r\n            call_to_action: \"Contact Us\", // Call to action\r\n            button_color: \"#666666\", // Color of button\r\n            position: \"right\", // Position may be \'right\' or \'left\'\r\n            order: \"facebook,call\", // Order of buttons\r\n        };\r\n        var proto = document.location.protocol, host = \"getbutton.io\", url = proto + \"//static.\" + host;\r\n        var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true; s.src = url + \'/widget-send-button/js/init.js\';\r\n        s.onload = function () { WhWidgetSendButton.init(host, proto, options); };\r\n        var x = document.getElementsByTagName(\'script\')[0]; x.parentNode.insertBefore(s, x);\r\n    })();\r\n</script>\r\n<!-- /GetButton.io widget -->','yes'),(1770,'wpcom_publish_posts_with_markdown','1','yes'),(356724,'_transient_2983b893e_elements','a:0:{}','yes'),(356725,'_transient_2983b893e_custom_js','','yes'),(356726,'_transient_2983b893e_updated_at','1605059632','yes'),(356753,'_transient_921d470f8_custom_js','','yes'),(356754,'_transient_921d470f8_updated_at','1602807129','yes'),(356733,'_transient_78a4b0d3e_elements','a:0:{}','yes'),(356734,'_transient_78a4b0d3e_custom_js','','yes'),(356735,'_transient_78a4b0d3e_updated_at','1605059632','yes'),(356809,'_transient_379c0f897_elements','a:0:{}','yes'),(356810,'_transient_379c0f897_custom_js','','yes'),(356811,'_transient_379c0f897_updated_at','1605059632','yes'),(33429,'db_upgraded','','yes'),(22554,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"ckeziah127@gmail.com\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1649193124;}','no'),(356791,'category_children','a:0:{}','yes'),(87112,'pdb_admin_notices','a:2:{s:10:\"1-22c90b1f\";O:24:\"pdb_admin_notice_message\":8:{s:30:\"\0pdb_admin_notice_message\0type\";s:4:\"info\";s:33:\"\0pdb_admin_notice_message\0message\";s:229:\"The Participants Database Manage Database Fields page has been completely redesigned. Use the \"Help\" tab for <a href=\"https://xnau.com/the-manage-database-fields-page/\" target=\"_blank\">instructions on using the new interface!</a>\";s:33:\"\0pdb_admin_notice_message\0context\";s:22:\"Manage Database Fields\";s:36:\"\0pdb_admin_notice_message\0persistent\";b:0;s:32:\"\0pdb_admin_notice_message\0global\";b:0;s:35:\"\0pdb_admin_notice_message\0dismissed\";b:1;s:28:\"\0pdb_admin_notice_message\0id\";s:10:\"1-22c90b1f\";s:40:\"\0pdb_admin_notice_message\0context_joiner\";s:1:\"/\";}s:10:\"0-22c90b1f\";O:24:\"pdb_admin_notice_message\":8:{s:30:\"\0pdb_admin_notice_message\0type\";s:4:\"info\";s:33:\"\0pdb_admin_notice_message\0message\";s:229:\"The Participants Database Manage Database Fields page has been completely redesigned. Use the \"Help\" tab for <a href=\"https://xnau.com/the-manage-database-fields-page/\" target=\"_blank\">instructions on using the new interface!</a>\";s:33:\"\0pdb_admin_notice_message\0context\";s:22:\"Manage Database Fields\";s:36:\"\0pdb_admin_notice_message\0persistent\";b:0;s:32:\"\0pdb_admin_notice_message\0global\";b:0;s:35:\"\0pdb_admin_notice_message\0dismissed\";b:0;s:28:\"\0pdb_admin_notice_message\0id\";s:10:\"0-22c90b1f\";s:40:\"\0pdb_admin_notice_message\0context_joiner\";s:1:\"/\";}}','yes'),(87120,'pdb-option_version','10.2','yes'),(3697,'wpforms_preview_page','353','yes'),(111291,'rsssl_activation_timestamp','1581814790','yes'),(111292,'rsssl_before_review_notice_user','1','yes'),(5928,'_transient_tsf_exclude_0_1','a:2:{s:7:\"archive\";a:0:{}s:6:\"search\";a:0:{}}','yes'),(59938,'recovery_keys','a:0:{}','yes'),(33487,'pand-d83e5fe4823f8f867dc30d3bb0b6c7de','1580844286','no'),(7366,'the_seo_framework_initial_db_version','3060','no'),(7367,'autodescription-updates-cache','a:2:{s:26:\"check_seo_plugin_conflicts\";i:0;s:18:\"persistent_notices\";a:0:{}}','yes'),(2028,'rlrsssl_options','a:16:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:19:\"review_notice_shown\";b:1;s:25:\"ssl_success_message_shown\";b:1;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:5:\"5.3.1\";s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:1;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:1;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"dismiss_all_notices\";b:0;s:13:\"high_contrast\";b:0;s:21:\"dismiss_review_notice\";b:0;}','yes'),(111275,'admin_email_lifespan','1668093237','yes'),(137350,'action_scheduler_hybrid_store_demarkation','629','yes'),(137351,'schema-ActionScheduler_StoreSchema','6.0.1645155134','yes'),(137352,'schema-ActionScheduler_LoggerSchema','3.0.1645155134','yes'),(137360,'wpforms_version_lite','1.6.2.3','yes'),(540452,'09829d973_elements','a:0:{}','yes'),(540453,'09829d973_custom_js','','yes'),(540454,'09829d973_updated_at','1606787969','yes'),(122895,'tlp_team_installed_version','2.5.2','yes'),(122896,'tlp_team_settings','a:5:{s:13:\"primary_color\";s:7:\"#0367bf\";s:11:\"feature_img\";a:2:{s:5:\"width\";i:400;s:6:\"height\";i:400;}s:4:\"slug\";s:4:\"team\";s:16:\"link_detail_page\";s:3:\"yes\";s:10:\"custom_css\";N;}','yes'),(122897,'widget_widget_tlpteam','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(137369,'wpforms_notifications','a:4:{s:6:\"update\";i:1602349622;s:4:\"feed\";a:1:{i:0;a:6:{s:5:\"title\";s:69:\"Introducing WPForms Webhooks - Powerful Flexibility With Integrations\";s:7:\"content\";s:286:\"With the new WPForms Webhooks addon, you can automatically send data from forms to other tools and apps, without a 3rd-party connector. This power-user feature will help save time and money as you automate your forms. Upgrade to an Elite license now to start using this awesome feature.\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:30;s:4:\"btns\";a:2:{s:4:\"main\";a:2:{s:3:\"url\";s:161:\"https://wpforms.com/wpforms-lite-upgrade/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=Plugin Notification&utm_content=Webhooks Lite Get WPForms Elite\";s:4:\"text\";s:17:\"Get WPForms Elite\";}s:3:\"alt\";a:2:{s:3:\"url\";s:176:\"https://wpforms.com/introducing-the-webhooks-addon-for-wpforms/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=Plugin Notification&utm_content=Webhooks Lite Learn More\";s:4:\"text\";s:10:\"Learn More\";}}s:5:\"start\";s:19:\"2020-07-30 17:18:16\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(320175,'elementor_allow_tracking','no','yes'),(320176,'elementor_tracker_notice','1','yes'),(348584,'user_registration_version','1.8.7.1','yes'),(348585,'user_registration_db_version','1.8.7.1','yes'),(173633,'hcrm_lead_settings','','yes'),(173634,'hcrm_enquiry_settings','','yes'),(173635,'hcrm_deals_settings','','yes'),(357958,'_transient_4959a19ad_elements','a:0:{}','yes'),(357959,'_transient_4959a19ad_custom_js','','yes'),(357960,'_transient_4959a19ad_updated_at','1605059632','yes'),(171164,'license_key_token','1590612490|dfZCotJvZNeONk6yBLJO','yes'),(358136,'_transient_c076ae721_updated_at','1605059632','yes'),(358137,'_transient_ee0cd9495_elements','a:0:{}','yes'),(358138,'_transient_ee0cd9495_custom_js','','yes'),(358139,'_transient_ee0cd9495_updated_at','1605059632','yes'),(358140,'_transient_8e54e7260_elements','a:0:{}','yes'),(358141,'_transient_8e54e7260_custom_js','','yes'),(358142,'_transient_8e54e7260_updated_at','1605059632','yes'),(358145,'_transient_b31fd3144_elements','a:0:{}','yes'),(358146,'_transient_b31fd3144_custom_js','','yes'),(358147,'_transient_b31fd3144_updated_at','1605059632','yes'),(358149,'_transient_94e0ec801_elements','a:0:{}','yes'),(358150,'_transient_94e0ec801_custom_js','','yes'),(358151,'_transient_94e0ec801_updated_at','1605059632','yes'),(358153,'_transient_3bb40134c_elements','a:0:{}','yes'),(358154,'_transient_3bb40134c_custom_js','','yes'),(358155,'_transient_3bb40134c_updated_at','1605059632','yes'),(358212,'_transient_014de122a_elements','a:0:{}','yes'),(358213,'_transient_014de122a_custom_js','','yes'),(358214,'_transient_014de122a_updated_at','1605059632','yes'),(358217,'_transient_0f0b6552d_elements','a:0:{}','yes'),(358218,'_transient_0f0b6552d_custom_js','','yes'),(358219,'_transient_0f0b6552d_updated_at','1605059632','yes'),(358233,'_transient_cf691cccc_elements','a:0:{}','yes'),(358234,'_transient_cf691cccc_custom_js','','yes'),(358235,'_transient_cf691cccc_updated_at','1605059632','yes'),(358245,'_transient_b3e981468_elements','a:0:{}','yes'),(358246,'_transient_b3e981468_custom_js','','yes'),(358247,'_transient_b3e981468_updated_at','1603149173','yes'),(358252,'_transient_c62f7f59b_elements','a:0:{}','yes'),(358253,'_transient_c62f7f59b_custom_js','','yes'),(358254,'_transient_c62f7f59b_updated_at','1605059632','yes'),(358293,'_transient_3e66b3c40_elements','a:0:{}','yes'),(358294,'_transient_3e66b3c40_custom_js','','yes'),(358295,'_transient_3e66b3c40_updated_at','1605059632','yes'),(358308,'_transient_6986b5952_elements','a:0:{}','yes'),(358309,'_transient_6986b5952_custom_js','','yes'),(358310,'_transient_6986b5952_updated_at','1605059632','yes'),(358314,'_transient_24e0372e7_elements','a:0:{}','yes'),(358315,'_transient_24e0372e7_custom_js','','yes'),(358316,'_transient_24e0372e7_updated_at','1605059632','yes'),(358318,'_transient_a803c36f4_elements','a:0:{}','yes'),(358319,'_transient_a803c36f4_custom_js','','yes'),(358320,'_transient_a803c36f4_updated_at','1605059632','yes'),(358322,'_transient_99dfef88f_elements','a:0:{}','yes'),(358323,'_transient_99dfef88f_custom_js','','yes'),(358324,'_transient_99dfef88f_updated_at','1605059632','yes'),(358325,'_transient_929451752_elements','a:0:{}','yes'),(358326,'_transient_929451752_custom_js','','yes'),(358327,'_transient_929451752_updated_at','1605059632','yes'),(358355,'_transient_3b7607749_elements','a:0:{}','yes'),(358356,'_transient_3b7607749_custom_js','','yes'),(358357,'_transient_3b7607749_updated_at','1605059632','yes'),(358364,'_transient_065d6d32d_elements','a:0:{}','yes'),(358365,'_transient_065d6d32d_custom_js','','yes'),(358366,'_transient_065d6d32d_updated_at','1605059632','yes'),(358384,'_transient_80785d988_elements','a:0:{}','yes'),(358385,'_transient_80785d988_custom_js','','yes'),(358386,'_transient_80785d988_updated_at','1605059632','yes'),(358398,'_transient_cbe841825_elements','a:0:{}','yes'),(358399,'_transient_cbe841825_custom_js','','yes'),(358400,'_transient_cbe841825_updated_at','1605059632','yes'),(358447,'_transient_4e74b0140_elements','a:0:{}','yes'),(1294675,'701f8537d_eael_updated_at','1650419774','no'),(552329,'auto_update_core_dev','enabled','yes'),(552330,'auto_update_core_minor','enabled','yes'),(552331,'auto_update_core_major','unset','yes'),(358449,'_transient_4e74b0140_updated_at','1605059632','yes'),(358458,'_transient_c80f1208b_elements','a:0:{}','yes'),(358459,'_transient_c80f1208b_custom_js','','yes'),(358460,'_transient_c80f1208b_updated_at','1605059632','yes'),(405291,'_transient_c3a6427a3_elements','a:0:{}','yes'),(405292,'_transient_c3a6427a3_custom_js','','yes'),(405293,'_transient_c3a6427a3_updated_at','1605059632','yes'),(417335,'8d9dab511_elements','a:0:{}','yes'),(417336,'8d9dab511_custom_js','','yes'),(417337,'8d9dab511_updated_at','1623201995','yes'),(1251239,'6a6288fa6_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(422821,'befd17855_elements','a:0:{}','yes'),(422822,'befd17855_custom_js','','yes'),(422823,'befd17855_updated_at','1623201995','yes'),(417738,'e618c66d7_elements','a:0:{}','yes'),(417739,'e618c66d7_custom_js','','yes'),(417740,'e618c66d7_updated_at','1606787969','yes'),(417744,'b0ff3698b_elements','a:0:{}','yes'),(417745,'b0ff3698b_custom_js','','yes'),(417746,'b0ff3698b_updated_at','1606787969','yes'),(417525,'8e54e7260_elements','a:0:{}','yes'),(417526,'8e54e7260_custom_js','','yes'),(417527,'8e54e7260_updated_at','1623201995','yes'),(1251199,'9583082da_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(417571,'e0f760bcc_elements','a:0:{}','yes'),(417572,'e0f760bcc_custom_js','','yes'),(417573,'e0f760bcc_updated_at','1606787969','yes'),(140651,'wps_cleaner_version','20180601','no'),(358519,'_transient_a4c68fc79_elements','a:0:{}','yes'),(358520,'_transient_a4c68fc79_custom_js','','yes'),(358521,'_transient_a4c68fc79_updated_at','1605059632','yes'),(358530,'_transient_09474a9fe_elements','a:0:{}','yes'),(358531,'_transient_09474a9fe_custom_js','','yes'),(358532,'_transient_09474a9fe_updated_at','1605059632','yes'),(358629,'_transient_befd17855_elements','a:0:{}','yes'),(358979,'_transient_8ba402eb7_elements','a:0:{}','yes'),(358980,'_transient_8ba402eb7_custom_js','','yes'),(358981,'_transient_8ba402eb7_updated_at','1605059632','yes'),(359083,'_transient_ad5e36cd2_elements','a:0:{}','yes'),(359084,'_transient_ad5e36cd2_custom_js','','yes'),(358686,'_transient_e55de3805_elements','a:0:{}','yes'),(358687,'_transient_e55de3805_custom_js','','yes'),(358688,'_transient_e55de3805_updated_at','1605059632','yes'),(359085,'_transient_ad5e36cd2_updated_at','1605059632','yes'),(359197,'_transient_46b54a632_elements','a:0:{}','yes'),(359198,'_transient_46b54a632_custom_js','','yes'),(359199,'_transient_46b54a632_updated_at','1605059632','yes'),(552375,'rsssl_remaining_tasks','','yes'),(552408,'wrm_4050c865d20d5e04a9ac','1614124588','yes'),(140813,'user_registration_general_setting_login_options','admin_approval','yes'),(137361,'action_scheduler_lock_async-request-runner','1657576823','yes'),(361506,'vgsefe_welcome_redirect','no','yes'),(358003,'_transient_f1562a4d0_elements','a:0:{}','yes'),(358004,'_transient_f1562a4d0_custom_js','','yes'),(358005,'_transient_f1562a4d0_updated_at','1605059632','yes'),(358006,'_transient_6900ee48b_elements','a:0:{}','yes'),(358007,'_transient_6900ee48b_custom_js','','yes'),(358008,'_transient_6900ee48b_updated_at','1605059632','yes'),(358047,'_transient_0ba465b66_elements','a:0:{}','yes'),(358048,'_transient_0ba465b66_custom_js','','yes'),(358049,'_transient_0ba465b66_updated_at','1605059632','yes'),(358059,'_transient_84e3fec52_elements','a:0:{}','yes'),(358060,'_transient_84e3fec52_custom_js','','yes'),(358061,'_transient_84e3fec52_updated_at','1605059632','yes'),(358083,'_transient_5b7cd2ba1_elements','a:0:{}','yes'),(358084,'_transient_5b7cd2ba1_custom_js','','yes'),(358085,'_transient_5b7cd2ba1_updated_at','1605059632','yes'),(358092,'_transient_29dc9347a_elements','a:0:{}','yes'),(358093,'_transient_29dc9347a_custom_js','','yes'),(358094,'_transient_29dc9347a_updated_at','1605059632','yes'),(358113,'_transient_7aca7e306_elements','a:0:{}','yes'),(358114,'_transient_7aca7e306_custom_js','','yes'),(358115,'_transient_7aca7e306_updated_at','1605059632','yes'),(358116,'_transient_0fd2f07b6_elements','a:0:{}','yes'),(358117,'_transient_0fd2f07b6_custom_js','','yes'),(358118,'_transient_0fd2f07b6_updated_at','1605059632','yes'),(358119,'_transient_0517557e8_elements','a:0:{}','yes'),(358120,'_transient_0517557e8_custom_js','','yes'),(358121,'_transient_0517557e8_updated_at','1605059632','yes'),(358124,'_transient_78ce372e0_elements','a:0:{}','yes'),(358125,'_transient_78ce372e0_custom_js','','yes'),(358126,'_transient_78ce372e0_updated_at','1603149173','yes'),(358127,'_transient_c5428dcf3_elements','a:0:{}','yes'),(358128,'_transient_c5428dcf3_custom_js','','yes'),(358129,'_transient_c5428dcf3_updated_at','1603149173','yes'),(358130,'_transient_e95d87e68_elements','a:0:{}','yes'),(358131,'_transient_e95d87e68_custom_js','','yes'),(358132,'_transient_e95d87e68_updated_at','1605059632','yes'),(358134,'_transient_c076ae721_elements','a:0:{}','yes'),(358135,'_transient_c076ae721_custom_js','','yes'),(140831,'user_registration_default_form_page_id','648','yes'),(230966,'analyst_cache','s:78:\"a:1:{s:43:\"account_email_confirmation_ao6grd4ed38kyeqz\";s:13:\"5f135a03b22f5\";}\";','yes'),(231015,'analyst_notices','s:402:\"O:29:\"Analyst\\Notices\\NoticeFactory\":1:{s:10:\"\0*\0notices\";a:1:{i:0;O:22:\"Analyst\\Notices\\Notice\":4:{s:5:\"\0*\0id\";s:13:\"5f135a03b22f5\";s:7:\"\0*\0body\";s:118:\"Please confirm your email by clicking on the link we sent to ckeziah127@gmail.com. This makes sure you’re not a bot.\";s:12:\"\0*\0accountId\";s:16:\"ao6grd4ed38kyeqz\";s:13:\"\0*\0pluginName\";s:52:\"Social Media and Share Icons (Ultimate Social Media)\";}}}\";','yes'),(230970,'sfsi_custom_icons','no','yes'),(137390,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":5,\"critical\":0}','yes'),(140814,'user_registration_general_setting_disabled_user_roles','a:1:{i:0;s:10:\"subscriber\";}','yes'),(140815,'user_registration_login_option_hide_show_password','no','yes'),(140816,'user_registration_general_setting_uninstall_option','no','yes'),(140817,'user_registration_myaccount_page_id','649','yes'),(140818,'user_registration_my_account_layout','horizontal','yes'),(140819,'user_registration_myaccount_edit_profile_endpoint','edit-profile','yes'),(140820,'user_registration_myaccount_change_password_endpoint','edit-password','yes'),(140821,'user_registration_myaccount_lost_password_endpoint','lost-password','yes'),(140822,'user_registration_logout_endpoint','user-logout','yes'),(140823,'user_registration_integration_setting_recaptcha_version','v2','yes'),(140824,'user_registration_integration_setting_recaptcha_site_key','','yes'),(140825,'user_registration_integration_setting_recaptcha_site_secret','','yes'),(140826,'user_registration_integration_setting_recaptcha_site_key_v3','','yes'),(140827,'user_registration_integration_setting_recaptcha_site_secret_v3','','yes'),(140828,'user_registration_email_setting_disable_email','no','no'),(140829,'user_registration_email_from_name','Lantern Realty and Development','no'),(140830,'user_registration_email_from_address','ckeziah127@gmail.com','no'),(320482,'theme_mods_twentytwenty','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:8;s:6:\"footer\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1600619131;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:25:\"ihomefindersocialwidget-3\";i:1;s:31:\"ihomefinderhotsheetlistwidget-3\";i:2;s:27:\"ihomefinderagentbiowidget-3\";i:3;s:28:\"ihomefindervaluationwidget-3\";i:4;s:13:\"media_image-8\";i:5;s:13:\"media_image-9\";i:6;s:14:\"media_image-10\";i:7;s:13:\"media_image-3\";i:8;s:13:\"media_image-4\";}s:9:\"sidebar-1\";a:13:{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\";i:6;s:24:\"ihomefinderloginwidget-2\";i:7;s:28:\"ihomefindervaluationwidget-2\";i:8;s:27:\"ihomefindermoreinfowidget-2\";i:9;s:30:\"ihomefinderpropertiesgallery-2\";i:10;s:13:\"media_image-6\";i:11;s:13:\"media_image-7\";i:12;s:14:\"media_image-11\";}s:9:\"sidebar-2\";a:4:{i:0;s:23:\"a2a_share_save_widget-2\";i:1;s:24:\"ihomefinderloginwidget-3\";i:2;s:30:\"ihomefinderpropertiesgallery-3\";i:3;s:6:\"text-2\";}}}}','yes'),(361507,'vg_sheet_editor_frontend_auto_setup','yes','yes'),(140838,'user_registration_registration_page_id','650','yes'),(140839,'user_registration_users_listing_viewed','2020-10-10 18:24:20','yes'),(140846,'user_registration_login_options_form_template','default','yes'),(140847,'user_registration_login_options_remember_me','yes','yes'),(140848,'user_registration_login_options_lost_password','yes','yes'),(140849,'user_registration_login_options_enable_recaptcha','yes','yes'),(140850,'user_registration_general_setting_registration_url_options','','yes'),(140851,'user_registration_general_setting_registration_label','New to Lantern? Create your agent account.','yes'),(140852,'user_registration_login_options_prevent_core_login','no','yes'),(140853,'user_registration_login_options_login_redirect_url','','yes'),(172312,'rs-templates-new','','no');
INSERT INTO `lrwp_options` VALUES (172314,'rs-templates','a:2:{s:6:\"slider\";a:608:{i:0;a:22:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:22:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:22:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:22:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:22:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:22:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:23:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:7;a:22:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:22:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:22:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:22:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:23:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:12;a:22:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:23:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:14;a:22:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:22:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:22:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:22:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:22:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:22:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:23:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:21;a:22:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:23:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:23;a:22:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:23:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:25;a:22:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:22:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:22:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:22:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:22:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:22:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:22:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:22:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:22:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:22:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:23:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:36;a:22:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:22:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:22:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:22:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:495:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:22:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:22:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:22:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:22:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:22:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:22:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:22:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:22:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:22:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:22:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:22:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:22:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:22:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:22:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:22:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:22:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:22:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:22:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:22:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:22:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:22:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:22:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:22:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:22:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:22:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:22:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:22:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:25:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:25:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:25:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:25:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:25:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:25:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:25:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:25:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:25:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:25:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:25:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:25:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:25:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:25:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:22:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:22:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:22:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:22:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:25:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:25:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:25:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:25:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:25:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:25:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:25:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:25:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:22:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:22:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:25:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:25:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:25:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:25:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:25:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:22:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:22:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:22:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:25:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:25:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:25:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:25:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:22:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:22:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:26:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:112;a:26:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:113;a:26:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:114;a:26:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:115;a:26:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:116;a:26:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:117;a:26:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:118;a:26:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:119;a:26:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:120;a:26:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:121;a:26:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:122;a:26:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:123;a:26:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:124;a:26:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:125;a:26:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:126;a:26:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:127;a:26:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:128;a:26:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:129;a:26:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:130;a:26:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:131;a:22:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:22:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:22:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:26:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:135;a:22:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:22:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:22:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:22:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:23:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:140;a:22:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:23:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:142;a:23:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:143;a:22:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:23:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:145;a:22:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:22:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:22:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:22:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:23:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:150;a:22:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:26:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:152;a:26:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:153;a:26:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:154;a:26:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:155;a:26:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:156;a:26:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:157;a:26:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:158;a:26:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:159;a:26:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:160;a:26:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:161;a:26:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:162;a:26:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:163;a:26:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:164;a:26:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:165;a:26:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:166;a:22:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:22:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:22:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:22:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:26:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:171;a:26:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:172;a:26:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:173;a:26:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:174;a:26:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:175;a:26:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:176;a:26:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:177;a:26:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:178;a:26:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:179;a:22:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:22:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:22:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:22:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:23:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.6\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:410:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:202;a:25:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:25:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:25:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:25:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:25:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:25:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:25:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:23:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:210;a:26:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:211;a:26:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:212;a:26:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:213;a:26:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:214;a:26:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:215;a:26:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:216;a:26:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:217;a:26:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:218;a:26:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:219;a:26:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:220;a:26:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:221;a:26:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:222;a:26:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:223;a:26:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:224;a:23:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:225;a:23:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:226;a:25:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:25:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:25:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:25:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:25:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:25:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:22:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:22:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:22:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:23:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:236;a:25:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:237;a:25:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:238;a:25:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:239;a:25:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:240;a:25:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:241;a:25:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:242;a:25:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:243;a:25:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:244;a:25:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:245;a:25:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:246;a:25:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:247;a:24:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;s:10:\"push_image\";b:1;}i:248;a:22:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:22:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:22:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:26:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:252;a:26:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:253;a:26:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:254;a:26:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:255;a:26:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:256;a:26:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:257;a:26:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:258;a:26:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:259;a:26:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:260;a:22:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:261;a:22:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:262;a:22:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/music-band-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:263;a:22:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:264;a:22:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/cinematic-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:265;a:22:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:25:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:267;a:25:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:268;a:25:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:269;a:25:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:270;a:25:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:271;a:25:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:272;a:25:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:273;a:25:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:274;a:25:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:275;a:25:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:276;a:25:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:277;a:25:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:278;a:25:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:279;a:25:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:280;a:25:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:281;a:25:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:282;a:25:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:283;a:25:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:284;a:25:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:286;a:26:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:287;a:26:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:288;a:25:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:289;a:25:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:290;a:25:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:291;a:25:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:292;a:25:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:293;a:25:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:294;a:25:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:295;a:25:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:296;a:22:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/retouch-before-after-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:297;a:22:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/tech-showcase-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:298;a:25:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:299;a:25:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:300;a:25:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:301;a:25:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:302;a:25:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:303;a:25:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"modern-portfolio-website-package\";s:3:\"img\";s:30:\"packages/portfolio-package.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:304;a:25:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:305;a:25:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:306;a:25:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:307;a:25:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:308;a:25:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:309;a:26:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:310;a:26:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:311;a:26:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:312;a:26:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:313;a:26:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:314;a:22:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/cube-animation-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:315;a:26:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:316;a:26:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:317;a:26:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:318;a:26:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:319;a:26:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:320;a:26:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:321;a:26:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:322;a:26:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:323;a:26:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:324;a:26:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:325;a:22:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/nature-explorer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:326;a:23:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/art-gallery-slider-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:327;a:25:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:328;a:25:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:329;a:25:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:330;a:25:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:331;a:25:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:332;a:25:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:333;a:25:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:334;a:24:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/classic-cars-before-after-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;s:10:\"push_image\";b:1;}i:335;a:22:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:49:\"https://revolution.themepunch.com/404-error-page/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:336;a:25:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:337;a:25:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:338;a:25:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:339;a:25:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:340;a:25:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:341;a:25:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:342;a:25:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:343;a:25:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:344;a:25:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:345;a:25:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:346;a:25:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:347;a:25:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:348;a:25:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:349;a:25:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:350;a:25:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:351;a:25:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:352;a:25:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:353;a:25:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:354;a:25:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:355;a:25:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:356;a:25:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:357;a:25:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:358;a:25:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:359;a:25:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:360;a:25:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:361;a:25:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:362;a:25:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:363;a:25:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:364;a:25:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:365;a:25:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:366;a:26:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"brutal-website-template-package\";s:3:\"img\";s:36:\"packages/brutal-website-template.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:367;a:26:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:368;a:26:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:369;a:26:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:370;a:26:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:371;a:26:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:372;a:26:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:373;a:26:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:374;a:26:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:375;a:25:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:376;a:25:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:377;a:25:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:378;a:25:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:379;a:25:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:380;a:25:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:381;a:25:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:382;a:25:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:383;a:25:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:384;a:25:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:385;a:25:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:386;a:25:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:387;a:25:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:388;a:25:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:389;a:25:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:390;a:25:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:391;a:25:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:392;a:25:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:393;a:25:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:394;a:25:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:395;a:26:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:396;a:26:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:397;a:26:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:398;a:26:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:399;a:26:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:400;a:26:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:401;a:26:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:402;a:26:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:403;a:26:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:404;a:26:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:405;a:26:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:407;a:23:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/isometric-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:408;a:25:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:7:\"website\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:409;a:25:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:410;a:25:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:411;a:22:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:412;a:25:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:413;a:26:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:414;a:25:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:415;a:25:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:416;a:25:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:417;a:25:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:418;a:25:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:419;a:25:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:420;a:25:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:421;a:25:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:422;a:25:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:423;a:25:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:424;a:25:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:425;a:25:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:426;a:22:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:427;a:22:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:428;a:22:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:429;a:22:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:430;a:22:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:431;a:22:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-hero-image-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:432;a:22:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/launching-soon-countdown/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:433;a:22:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/under-construction/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:434;a:22:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/snow-particle-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:435;a:22:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/cyber-particle-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:436;a:25:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:437;a:25:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:438;a:25:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:439;a:26:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:440;a:25:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:441;a:26:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:442;a:25:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:443;a:25:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:444;a:26:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:445;a:25:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:446;a:22:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:447;a:23:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/travel-blog-carousel/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:448;a:22:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/project-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:449;a:22:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/news-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:450;a:26:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:451;a:26:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:452;a:26:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:453;a:26:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:454;a:26:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:455;a:26:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:456;a:26:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:457;a:26:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:458;a:26:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:459;a:26:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:460;a:22:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"Real-Estate-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:461;a:22:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:62:\"https://www.sliderrevolution.com/templates/food-delivery-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:462;a:22:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:463;a:25:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:464;a:26:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:465;a:25:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:466;a:25:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:467;a:25:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:468;a:25:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:469;a:25:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:470;a:25:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:471;a:25:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:472;a:25:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:473;a:22:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:474;a:25:{s:2:\"id\";s:3:\"510\";s:5:\"title\";s:29:\"Photographer Website Template\";s:5:\"alias\";s:29:\"photographer-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"photographer-website-template-package\";s:3:\"img\";s:50:\"packages/photographer-website-template-package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:475;a:25:{s:2:\"id\";s:3:\"511\";s:5:\"title\";s:19:\"Photographer Header\";s:5:\"alias\";s:19:\"Photographer-Header\";s:3:\"zip\";s:29:\"packs/Photographer-Header.zip\";s:3:\"uid\";s:32:\"22de8b3b1eeca5d0d1087791a28cc641\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:476;a:25:{s:2:\"id\";s:3:\"512\";s:5:\"title\";s:27:\"Photographer Welcome Screen\";s:5:\"alias\";s:27:\"Photographer-Welcome-Screen\";s:3:\"zip\";s:37:\"packs/Photographer-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"8de63df079ad8b7c0aa7bf164bd5fd8f\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:477;a:25:{s:2:\"id\";s:3:\"513\";s:5:\"title\";s:21:\"Photographer Showcase\";s:5:\"alias\";s:21:\"Photographer-Showcase\";s:3:\"zip\";s:31:\"packs/Photographer-Showcase.zip\";s:3:\"uid\";s:32:\"8b2c7a1541465f77e829a9ac58926359\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:478;a:25:{s:2:\"id\";s:3:\"514\";s:5:\"title\";s:22:\"Photographer Portfolio\";s:5:\"alias\";s:22:\"Photographer-Portfolio\";s:3:\"zip\";s:32:\"packs/Photographer-Portfolio.zip\";s:3:\"uid\";s:32:\"ba5cc502a9505725ef169eaf4852d10f\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:479;a:25:{s:2:\"id\";s:3:\"515\";s:5:\"title\";s:21:\"Photographer Contacts\";s:5:\"alias\";s:21:\"Photographer-Contacts\";s:3:\"zip\";s:31:\"packs/Photographer-Contacts.zip\";s:3:\"uid\";s:32:\"6ac142733cd260b5d5d3cdce30885074\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:480;a:25:{s:2:\"id\";s:3:\"516\";s:5:\"title\";s:19:\"Photographer Footer\";s:5:\"alias\";s:19:\"Photographer-Footer\";s:3:\"zip\";s:29:\"packs/Photographer-Footer.zip\";s:3:\"uid\";s:32:\"5fae568a988d072fb14b66cc2732ea46\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:481;a:25:{s:2:\"id\";s:3:\"517\";s:5:\"title\";s:18:\"Photographer Modal\";s:5:\"alias\";s:18:\"Photographer-Modal\";s:3:\"zip\";s:28:\"packs/Photographer-Modal.zip\";s:3:\"uid\";s:32:\"e6b47a765ad19bce4726540ff7211c07\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:482;a:22:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:56:\"https://www.sliderrevolution.com/templates/mini-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:483;a:23:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/black-friday-scroll-video/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:370:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:485;a:25:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:486;a:25:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:86:\" offset=\"t:90px,80px,70px,70px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:487;a:25:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:488;a:25:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:489;a:25:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:490;a:25:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:491;a:25:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:492;a:25:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:493;a:25:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:494;a:25:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:495;a:25:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:496;a:22:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:65:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:497;a:23:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:544:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:498;a:22:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:500;a:25:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:501;a:25:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:502;a:25:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:503;a:25:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:504;a:25:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/corporate-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:505;a:26:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:506;a:25:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:507;a:25:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:508;a:26:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:509;a:25:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:510;a:25:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:511;a:25:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:512;a:25:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:513;a:25:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:514;a:25:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:515;a:25:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:516;a:22:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:517;a:22:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:518;a:25:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:519;a:25:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:520;a:22:{s:2:\"id\";s:3:\"553\";s:5:\"title\";s:24:\"Creative Hero Collection\";s:5:\"alias\";s:24:\"creative-hero-collection\";s:3:\"zip\";s:28:\"creative-hero-collection.zip\";s:3:\"uid\";s:32:\"e20126d93d081055e5ff3f6981b971fa\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/creative-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \"scene\".</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:22:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:521;a:22:{s:2:\"id\";s:3:\"554\";s:5:\"title\";s:12:\"Photo Slider\";s:5:\"alias\";s:19:\"photographer-slider\";s:3:\"zip\";s:23:\"photographer-slider.zip\";s:3:\"uid\";s:32:\"e00104cff231e2aaeb149b3c63e78a5e\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";s:7:\"preview\";s:80:\"https://www.sliderrevolution.com/templates/photographer-and-videographer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">A great module for any photographer/videographer who wants to display their portfolio in an engaging way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:25:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:522;a:22:{s:2:\"id\";s:3:\"555\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:17:\"realestate-slider\";s:3:\"zip\";s:21:\"realestate-slider.zip\";s:3:\"uid\";s:32:\"596effabfef768f0371cba2b1fdd0c1d\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">Showcase your clients real estate offerings with this clean and convincing presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-02-23 10:45:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:523;a:22:{s:2:\"id\";s:3:\"556\";s:5:\"title\";s:19:\"Saas Product Slider\";s:5:\"alias\";s:19:\"saas-product-slider\";s:3:\"zip\";s:23:\"saas-product-slider.zip\";s:3:\"uid\";s:32:\"3cf7809058f383425c5409aa1204335f\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/saas-product-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">Present your digital SaaS product with a modern design and stunning animations.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:349:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:49:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:524;a:26:{s:2:\"id\";s:3:\"557\";s:5:\"title\";s:27:\"Cinematic Wildlife Template\";s:5:\"alias\";s:27:\"cinematic-wildlife-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"cinematic-wildlife-template\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:45:38\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:525;a:26:{s:2:\"id\";s:3:\"558\";s:5:\"title\";s:25:\"Cinematic Wildlife Slider\";s:5:\"alias\";s:25:\"cinematic-wildlife-slider\";s:3:\"zip\";s:35:\"packs/cinematic-wildlife-slider.zip\";s:3:\"uid\";s:32:\"a37b04e221a845d6d446f4d70e815b87\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:47:01\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:526;a:26:{s:2:\"id\";s:3:\"559\";s:5:\"title\";s:24:\"Cinematic Wildlife Modal\";s:5:\"alias\";s:24:\"cinematic-wildlife-modal\";s:3:\"zip\";s:34:\"packs/cinematic-wildlife-modal.zip\";s:3:\"uid\";s:32:\"636a6885199f684ad743167ceea70dc4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:50:56\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:527;a:23:{s:2:\"id\";s:3:\"560\";s:5:\"title\";s:32:\"Gaming Stats Presentation Slider\";s:5:\"alias\";s:32:\"gaming-stats-presentation-slider\";s:3:\"zip\";s:36:\"gaming-stats-presentation-slider.zip\";s:3:\"uid\";s:32:\"988df5050f2a45a108ef32518a725bf8\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/charts-addon-presentation-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.4.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">Create interactive presentations and showcase statistics with unique and customizable charts</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:159:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-04-29 09:50:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:528;a:23:{s:2:\"id\";s:3:\"561\";s:5:\"title\";s:31:\"Coffee Shop Split Screen Slider\";s:5:\"alias\";s:15:\"coffee-flavours\";s:3:\"zip\";s:19:\"coffee-flavours.zip\";s:3:\"uid\";s:32:\"63726447a6a614d8f53fbf6024fd3033\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/coffee-shop-split-screen-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">The animated elements and clean layout make this slider an eye-catcher for your coffee shop. With it\'s easy customizability, this template is perfect for showcasing any type of product!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:09:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:529;a:22:{s:2:\"id\";s:3:\"562\";s:5:\"title\";s:32:\"Modern Portfolio Showreel Slider\";s:5:\"alias\";s:15:\"showreel-slider\";s:3:\"zip\";s:19:\"showreel-slider.zip\";s:3:\"uid\";s:32:\"bced29a585e67153a1ed7608ddcdb69d\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/modern-portfolio-showreel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:216:\"<span class=\"ttm_content\">Showcase beautiful videos and photography with this clean looking slider with modern UI and effective typography. Perfect for any creative professional.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:14:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:530;a:23:{s:2:\"id\";s:3:\"563\";s:5:\"title\";s:23:\"Visual Art Forms Slider\";s:5:\"alias\";s:16:\"visual-art-forms\";s:3:\"zip\";s:20:\"visual-art-forms.zip\";s:3:\"uid\";s:32:\"4d57a5abf20bc4a615fe30837ac3ce1a\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/visual-art-forms-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:180:\"<span class=\"ttm_content\">Present just about anything with this highly flexible and modern looking slider, no matter what industry you are in.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:18:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:531;a:22:{s:2:\"id\";s:3:\"564\";s:5:\"title\";s:22:\"Background Effect Hero\";s:5:\"alias\";s:14:\"bg-effect-hero\";s:3:\"zip\";s:18:\"bg-effect-hero.zip\";s:3:\"uid\";s:32:\"55bb0fa5ac66ad84423fa704b701e1df\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";s:7:\"preview\";s:77:\"https://www.sliderrevolution.com/templates/background-effect-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:224:\"<span class=\"ttm_content\">If you really want to stun your visitors with gorgeous gradients and dreamy transitions, <br />\r\nthis slider / hero module is exactly what you were looking for.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:697:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:45:50\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:532;a:22:{s:2:\"id\";s:3:\"565\";s:5:\"title\";s:26:\"Cyber Glitch Effect Slider\";s:5:\"alias\";s:9:\"cyberfunk\";s:3:\"zip\";s:13:\"cyberfunk.zip\";s:3:\"uid\";s:32:\"44fdc7e13074bdc46500972cd708c739\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/cyber-glitch-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Dive into a futuristic, neon, cyber world with this amazing slider template featuring <br />\r\nglitch effect transitions and a typewriter effect.<br />\r\nThe custom navigation skin can be customized easily!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:355:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:51:54\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:533;a:23:{s:2:\"id\";s:3:\"566\";s:5:\"title\";s:30:\"Motion Blur Portfolio Showcase\";s:5:\"alias\";s:21:\"motion-blur-portfolio\";s:3:\"zip\";s:25:\"motion-blur-portfolio.zip\";s:3:\"uid\";s:32:\"28086bed49cfb241c7d40f91cd64e970\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/motion-blur-portfolio-showcase/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:238:\"<span class=\"ttm_content\">This clean showcase slider with an optional video popup is using a fancy motion blur transition!<br />\r\nPacked with a logo and menu its ready to visualize your wildest ideas.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:56:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:534;a:23:{s:2:\"id\";s:3:\"567\";s:5:\"title\";s:25:\"Portal Effect Hero Slider\";s:5:\"alias\";s:18:\"portal-effect-hero\";s:3:\"zip\";s:22:\"portal-effect-hero.zip\";s:3:\"uid\";s:32:\"87f5b64e44dc5b75bc1c7adbeb287ee9\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/portal-effect-hero-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:282:\"<span class=\"ttm_content\">This slider module can function as an impressive landing page or a striking product presentation anywhere on your WordPress website.<br />\r\nThe design already includes elements like a logo, menu and social media icons.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:08:18\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:535;a:22:{s:2:\"id\";s:3:\"568\";s:5:\"title\";s:22:\"Winery Timeline Slider\";s:5:\"alias\";s:15:\"winery-timeline\";s:3:\"zip\";s:19:\"winery-timeline.zip\";s:3:\"uid\";s:32:\"d2ccdaf0a5c73db21e8e8a3f6712e8bd\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/winery-timeline-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:247:\"<span class=\"ttm_content\">Tell your own story with this fabulous timeline slider.<br />\r\nLogo and social icon design elements are already included if you want to use this template as a standalone landing page!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:13:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:536;a:25:{s:2:\"id\";s:3:\"569\";s:5:\"title\";s:25:\"Smart Living One Pager V1\";s:5:\"alias\";s:25:\"smart-living-one-pager-v1\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:33:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:537;a:25:{s:2:\"id\";s:3:\"570\";s:5:\"title\";s:25:\"Smart Living One Pager V2\";s:5:\"alias\";s:25:\"smart-living-one-pager-v2\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v2\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:38:21\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:538;a:25:{s:2:\"id\";s:3:\"571\";s:5:\"title\";s:25:\"Smart Living One Pager V3\";s:5:\"alias\";s:25:\"smart-living-one-pager-v3\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v3\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:39:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:539;a:25:{s:2:\"id\";s:3:\"572\";s:5:\"title\";s:6:\"Menu 1\";s:5:\"alias\";s:6:\"menu-1\";s:3:\"zip\";s:16:\"packs/menu-1.zip\";s:3:\"uid\";s:32:\"6e5038d711f2ee8326c79c3a9e06ded4\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:41:12\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:540;a:26:{s:2:\"id\";s:3:\"573\";s:5:\"title\";s:6:\"Hero 1\";s:5:\"alias\";s:14:\"onepage-hero-1\";s:3:\"zip\";s:24:\"packs/onepage-hero-1.zip\";s:3:\"uid\";s:32:\"9f5fec6956bd2e1e1ecc553a8b7471b0\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:48:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:541;a:25:{s:2:\"id\";s:3:\"574\";s:5:\"title\";s:7:\"About 1\";s:5:\"alias\";s:6:\"about1\";s:3:\"zip\";s:16:\"packs/about1.zip\";s:3:\"uid\";s:32:\"fc4962093f61124101c05ceb506fa5d2\";s:3:\"img\";s:17:\"about1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:50:54\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:542;a:25:{s:2:\"id\";s:3:\"575\";s:5:\"title\";s:10:\"Services 1\";s:5:\"alias\";s:9:\"services1\";s:3:\"zip\";s:19:\"packs/services1.zip\";s:3:\"uid\";s:32:\"08f72a81aeb9afdaa57f544e4331a6da\";s:3:\"img\";s:20:\"services1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:52:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:543;a:25:{s:2:\"id\";s:3:\"576\";s:5:\"title\";s:10:\"Projects 1\";s:5:\"alias\";s:9:\"projects1\";s:3:\"zip\";s:19:\"packs/projects1.zip\";s:3:\"uid\";s:32:\"11ff60e82fcf47a6a2c6bdce3cc1d8f2\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:01:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:544;a:25:{s:2:\"id\";s:3:\"577\";s:5:\"title\";s:8:\"Footer 1\";s:5:\"alias\";s:8:\"footer-1\";s:3:\"zip\";s:18:\"packs/footer-1.zip\";s:3:\"uid\";s:32:\"947fac99689a985c7f0f7dfec4311f6b\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:05:00\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:545;a:25:{s:2:\"id\";s:3:\"578\";s:5:\"title\";s:24:\"Explainer Block 1 Part 1\";s:5:\"alias\";s:23:\"explainer-block-1-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part1.zip\";s:3:\"uid\";s:32:\"731980bef0ea06263d05b286b5a75dfe\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:06:07\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:546;a:25:{s:2:\"id\";s:3:\"579\";s:5:\"title\";s:24:\"Explainer Block 1 Part 2\";s:5:\"alias\";s:23:\"explainer-block-1-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part2.zip\";s:3:\"uid\";s:32:\"ded730f13551f78b9a87b159b72d8ce8\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:07:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:547;a:25:{s:2:\"id\";s:3:\"580\";s:5:\"title\";s:16:\"Projects Modal 1\";s:5:\"alias\";s:16:\"projects-modal-1\";s:3:\"zip\";s:26:\"packs/projects-modal-1.zip\";s:3:\"uid\";s:32:\"b17af2f4e21786711a2ce4ac0c4436ad\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:08:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:548;a:25:{s:2:\"id\";s:3:\"581\";s:5:\"title\";s:6:\"Menu 2\";s:5:\"alias\";s:6:\"menu-2\";s:3:\"zip\";s:16:\"packs/menu-2.zip\";s:3:\"uid\";s:32:\"a8d103f753ee50d4f81aa4100df8b7f9\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:20:20\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:549;a:25:{s:2:\"id\";s:3:\"582\";s:5:\"title\";s:6:\"Hero 2\";s:5:\"alias\";s:6:\"hero-2\";s:3:\"zip\";s:16:\"packs/hero-2.zip\";s:3:\"uid\";s:32:\"7e56900f8c4b6e12435b70e141accaa8\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 15:27:59\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:550;a:25:{s:2:\"id\";s:3:\"583\";s:5:\"title\";s:10:\"Services 2\";s:5:\"alias\";s:10:\"services-2\";s:3:\"zip\";s:20:\"packs/services-2.zip\";s:3:\"uid\";s:32:\"da2d588b291a7754096ac77746ba1da5\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:29:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:551;a:25:{s:2:\"id\";s:3:\"584\";s:5:\"title\";s:7:\"About 2\";s:5:\"alias\";s:7:\"about-2\";s:3:\"zip\";s:17:\"packs/about-2.zip\";s:3:\"uid\";s:32:\"8e9e84d1aec08de6e099473683bf0e57\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:30:15\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:552;a:25:{s:2:\"id\";s:3:\"585\";s:5:\"title\";s:10:\"Projects 2\";s:5:\"alias\";s:10:\"projects-2\";s:3:\"zip\";s:20:\"packs/projects-2.zip\";s:3:\"uid\";s:32:\"99bc6ca75f6d5e018701aef5f5b22b27\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:32:06\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:553;a:25:{s:2:\"id\";s:3:\"586\";s:5:\"title\";s:8:\"Footer 2\";s:5:\"alias\";s:7:\"footer2\";s:3:\"zip\";s:17:\"packs/footer2.zip\";s:3:\"uid\";s:32:\"99df496d2fd9e897a2debb66958cb610\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:34:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:554;a:25:{s:2:\"id\";s:3:\"587\";s:5:\"title\";s:24:\"Explainer Block 2 Part 1\";s:5:\"alias\";s:23:\"explainer-block-2-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part1.zip\";s:3:\"uid\";s:32:\"aee4d41e9cf5f91ad69bfbe96d1dc1b8\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:35:48\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:555;a:25:{s:2:\"id\";s:3:\"588\";s:5:\"title\";s:24:\"Explainer Block 2 Part 2\";s:5:\"alias\";s:23:\"explainer-block-2-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part2.zip\";s:3:\"uid\";s:32:\"b12ac82484c5d2609994978f95026057\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:37:05\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:556;a:25:{s:2:\"id\";s:3:\"589\";s:5:\"title\";s:16:\"Projects Modal 2\";s:5:\"alias\";s:16:\"projects-modal-2\";s:3:\"zip\";s:26:\"packs/projects-modal-2.zip\";s:3:\"uid\";s:32:\"ac164d7043a8958ae2931e4be54bf56e\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:38:22\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:557;a:25:{s:2:\"id\";s:3:\"590\";s:5:\"title\";s:6:\"Menu 3\";s:5:\"alias\";s:6:\"menu-3\";s:3:\"zip\";s:16:\"packs/menu-3.zip\";s:3:\"uid\";s:32:\"7300529d564642c76e61890cf0ef57cf\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:42:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:558;a:25:{s:2:\"id\";s:3:\"591\";s:5:\"title\";s:6:\"Hero 3\";s:5:\"alias\";s:6:\"hero-3\";s:3:\"zip\";s:16:\"packs/hero-3.zip\";s:3:\"uid\";s:32:\"08db05794abf4e6c10788cbd423f92b2\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:46:06\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:559;a:25:{s:2:\"id\";s:3:\"592\";s:5:\"title\";s:7:\"About 3\";s:5:\"alias\";s:7:\"about-3\";s:3:\"zip\";s:17:\"packs/about-3.zip\";s:3:\"uid\";s:32:\"dac01fc9b9d664f271e1ea6a1bbb850c\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:47:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:560;a:25:{s:2:\"id\";s:3:\"593\";s:5:\"title\";s:10:\"Services 3\";s:5:\"alias\";s:10:\"services-3\";s:3:\"zip\";s:20:\"packs/services-3.zip\";s:3:\"uid\";s:32:\"4bad1c4a765cef7d93d3c7e2a0e76b83\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:50:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:561;a:25:{s:2:\"id\";s:3:\"594\";s:5:\"title\";s:10:\"Projects 3\";s:5:\"alias\";s:10:\"projects-3\";s:3:\"zip\";s:20:\"packs/projects-3.zip\";s:3:\"uid\";s:32:\"e3337a84122e580679474dea8d7bf37c\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:51:31\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:562;a:25:{s:2:\"id\";s:3:\"595\";s:5:\"title\";s:8:\"Footer 3\";s:5:\"alias\";s:8:\"footer-3\";s:3:\"zip\";s:18:\"packs/footer-3.zip\";s:3:\"uid\";s:32:\"524f4445a5565bf3ef1dcd7b2f0228cc\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:53:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:563;a:25:{s:2:\"id\";s:3:\"596\";s:5:\"title\";s:24:\"Explainer Block 3 Part 1\";s:5:\"alias\";s:23:\"explainer-block-3-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part1.zip\";s:3:\"uid\";s:32:\"b1469a955fecb4e1d645a604804716de\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:54:20\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:564;a:25:{s:2:\"id\";s:3:\"597\";s:5:\"title\";s:24:\"Explainer Block 3 Part 2\";s:5:\"alias\";s:23:\"explainer-block-3-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part2.zip\";s:3:\"uid\";s:32:\"3faa6f1dc248ef2ba3d50cc60db557b1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:55:33\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:565;a:25:{s:2:\"id\";s:3:\"598\";s:5:\"title\";s:16:\"Projects Modal 3\";s:5:\"alias\";s:16:\"projects-modal-3\";s:3:\"zip\";s:26:\"packs/projects-modal-3.zip\";s:3:\"uid\";s:32:\"b22bb57c30e75bf7d7ba7d240a21b3fe\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:57:05\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:566;a:22:{s:2:\"id\";s:3:\"599\";s:5:\"title\";s:25:\"Urban Street Skate Slider\";s:5:\"alias\";s:25:\"urban-street-skate-slider\";s:3:\"zip\";s:29:\"urban-street-skate-slider.zip\";s:3:\"uid\";s:32:\"14b18e98ac51aa922a264b74518d6f25\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Create catchy presentations with sleek transitions, using this urban-themed slider. A template that\'s perfectly suitable for showcasing products and marketing campaigns!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-14 18:54:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:567;a:22:{s:2:\"id\";s:3:\"600\";s:5:\"title\";s:34:\"Fast Food Burger Restaurant Slider\";s:5:\"alias\";s:13:\"yummy-burgers\";s:3:\"zip\";s:17:\"yummy-burgers.zip\";s:3:\"uid\";s:32:\"3de3520af809748281f3aaa16d8c2222\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";s:7:\"preview\";s:78:\"https://www.sliderrevolution.com/templates/fast-food-burger-restaurant-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">Make your clients feel hungry with this tasty looking slider, featuring jaw dropping animations and smooth interactions! Easily customizable for showcasing food related products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-11 12:47:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:568;a:25:{s:2:\"id\";s:3:\"601\";s:5:\"title\";s:37:\"Tattoo Event Website Template Package\";s:5:\"alias\";s:37:\"tattoo-event-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"tattoo-event-website-template-package\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-12 14:37:06\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:569;a:25:{s:2:\"id\";s:3:\"602\";s:5:\"title\";s:24:\"Tattoo Event Hero Slider\";s:5:\"alias\";s:24:\"tattoo-event-hero-slider\";s:3:\"zip\";s:34:\"packs/tattoo-event-hero-slider.zip\";s:3:\"uid\";s:32:\"3a4eb0f2f1de6b9a644d626c4472208b\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:11:21\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:570;a:25:{s:2:\"id\";s:3:\"603\";s:5:\"title\";s:18:\"Tattoo Event About\";s:5:\"alias\";s:18:\"tattoo-event-about\";s:3:\"zip\";s:28:\"packs/tattoo-event-about.zip\";s:3:\"uid\";s:32:\"ae8aaf2b1aeb84036c35ac3d4a178ed6\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:14:35\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:571;a:25:{s:2:\"id\";s:3:\"604\";s:5:\"title\";s:20:\"Tattoo Event Artists\";s:5:\"alias\";s:20:\"tattoo-event-artists\";s:3:\"zip\";s:30:\"packs/tattoo-event-artists.zip\";s:3:\"uid\";s:32:\"e11b6508214396963c856afc1b604e58\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:16:36\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:572;a:25:{s:2:\"id\";s:3:\"605\";s:5:\"title\";s:21:\"Tattoo Event Schedule\";s:5:\"alias\";s:21:\"tattoo-event-schedule\";s:3:\"zip\";s:31:\"packs/tattoo-event-schedule.zip\";s:3:\"uid\";s:32:\"73be4b953a719fc9abfadc447e88b906\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:19:17\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:573;a:25:{s:2:\"id\";s:3:\"606\";s:5:\"title\";s:17:\"Tattoo Event News\";s:5:\"alias\";s:17:\"tattoo-event-news\";s:3:\"zip\";s:27:\"packs/tattoo-event-news.zip\";s:3:\"uid\";s:32:\"80eafaaaa2f1844cac7c5c1efb0912d1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:21:56\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:574;a:25:{s:2:\"id\";s:3:\"607\";s:5:\"title\";s:19:\"Tattoo Event Footer\";s:5:\"alias\";s:19:\"tattoo-event-footer\";s:3:\"zip\";s:29:\"packs/tattoo-event-footer.zip\";s:3:\"uid\";s:32:\"0c16f7290794f2e26566c8a8ca8f6493\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:23:18\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:575;a:25:{s:2:\"id\";s:3:\"608\";s:5:\"title\";s:24:\"Startup Website Template\";s:5:\"alias\";s:24:\"startup-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"startup-website-template\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:29:34\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:576;a:25:{s:2:\"id\";s:3:\"609\";s:5:\"title\";s:12:\"Startup Menu\";s:5:\"alias\";s:12:\"startup-menu\";s:3:\"zip\";s:22:\"packs/startup-menu.zip\";s:3:\"uid\";s:32:\"10b7853c05d47a99e61a68ec7ef0a0ea\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:32:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:577;a:25:{s:2:\"id\";s:3:\"610\";s:5:\"title\";s:12:\"Startup Hero\";s:5:\"alias\";s:12:\"startup-hero\";s:3:\"zip\";s:22:\"packs/startup-hero.zip\";s:3:\"uid\";s:32:\"7a41e68bac8bc7f937b7eb957e01eb11\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:34:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:578;a:25:{s:2:\"id\";s:3:\"611\";s:5:\"title\";s:13:\"Startup About\";s:5:\"alias\";s:13:\"startup-about\";s:3:\"zip\";s:23:\"packs/startup-about.zip\";s:3:\"uid\";s:32:\"22a816ba986476a36fef3887ff4d1ea1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:36:55\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:579;a:25:{s:2:\"id\";s:3:\"612\";s:5:\"title\";s:18:\"Startup Features 1\";s:5:\"alias\";s:18:\"startup-features-1\";s:3:\"zip\";s:28:\"packs/startup-features-1.zip\";s:3:\"uid\";s:32:\"4b0b7b8773ba30bdc58b862442155faa\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:39:11\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:580;a:25:{s:2:\"id\";s:3:\"613\";s:5:\"title\";s:18:\"Startup Features 2\";s:5:\"alias\";s:18:\"startup-features-2\";s:3:\"zip\";s:28:\"packs/startup-features-2.zip\";s:3:\"uid\";s:32:\"7a686556ca8c4355fea931b3e946a3d0\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:40:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:581;a:25:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:12:\"Startup Team\";s:5:\"alias\";s:12:\"startup-team\";s:3:\"zip\";s:22:\"packs/startup-team.zip\";s:3:\"uid\";s:32:\"7969f1f556fd276ec04dcbf49144d2f8\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:42:12\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:582;a:25:{s:2:\"id\";s:3:\"615\";s:5:\"title\";s:15:\"Startup Reviews\";s:5:\"alias\";s:15:\"startup-reviews\";s:3:\"zip\";s:25:\"packs/startup-reviews.zip\";s:3:\"uid\";s:32:\"4d5253028165c237cda5f42c3f721c09\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:43:42\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:583;a:25:{s:2:\"id\";s:3:\"616\";s:5:\"title\";s:11:\"Startup CTA\";s:5:\"alias\";s:11:\"startup-cta\";s:3:\"zip\";s:21:\"packs/startup-cta.zip\";s:3:\"uid\";s:32:\"bfe7cb2a94dd8292179e16a986cf2748\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:45:02\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:584;a:25:{s:2:\"id\";s:3:\"617\";s:5:\"title\";s:14:\"Startup Footer\";s:5:\"alias\";s:14:\"startup-footer\";s:3:\"zip\";s:24:\"packs/startup-footer.zip\";s:3:\"uid\";s:32:\"d73466042d108699d366bf9cab2beaa8\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:46:31\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:585;a:25:{s:2:\"id\";s:3:\"618\";s:5:\"title\";s:19:\"Startup Video Modal\";s:5:\"alias\";s:19:\"startup-video-modal\";s:3:\"zip\";s:29:\"packs/startup-video-modal.zip\";s:3:\"uid\";s:32:\"5fd53a8ad93456a152c25079f6437377\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:47:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:586;a:25:{s:2:\"id\";s:3:\"619\";s:5:\"title\";s:32:\"Christmas Gift Card Landing Page\";s:5:\"alias\";s:32:\"christmas-gift-card-landing-page\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"christmas-gift-card-landing-page\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:509:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:05:33\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:587;a:25:{s:2:\"id\";s:3:\"620\";s:5:\"title\";s:24:\"Christmas Landing Page 1\";s:5:\"alias\";s:24:\"christmas-landing-page-1\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-1.zip\";s:3:\"uid\";s:32:\"17eb656138d076ca1dc2d9fa5cefb1b8\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:509:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:08:37\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:588;a:25:{s:2:\"id\";s:3:\"621\";s:5:\"title\";s:24:\"Christmas Landing Page 2\";s:5:\"alias\";s:24:\"christmas-landing-page-2\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-2.zip\";s:3:\"uid\";s:32:\"ea0d2cfdba50c8060c66ee7b979c3b83\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:10:54\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:589;a:22:{s:2:\"id\";s:3:\"622\";s:5:\"title\";s:12:\"Image Slider\";s:5:\"alias\";s:12:\"image-slider\";s:3:\"zip\";s:16:\"image-slider.zip\";s:3:\"uid\";s:32:\"85a8fcfa9220809176bd3d6bc70b4abf\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/newborn-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:213:\"<span class=\"ttm_content\">Get an instant \"wow\" from your visitors with this sleek background image slider, that includes a clean UI for easy navigation and smooth transitions.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-04 09:45:41\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:590;a:25:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:25:\"Minimal Portfolio Website\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-website\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:591;a:22:{s:2:\"id\";s:3:\"623\";s:5:\"title\";s:17:\"Full Width Slider\";s:5:\"alias\";s:17:\"full-width-slider\";s:3:\"zip\";s:21:\"full-width-slider.zip\";s:3:\"uid\";s:32:\"e2792804e7a1f3ec9806f6a6225a559d\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/delicious-full-width-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">We\'ve prepared something tasty for you. A delicious looking, responsive full width slider, with a wide range of use cases and a plethora of smart, UI navigation options.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-10 11:40:04\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:592;a:25:{s:2:\"id\";s:3:\"624\";s:5:\"title\";s:20:\"App Website Template\";s:5:\"alias\";s:20:\"app-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"app-website-template\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:22:53\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:593;a:25:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:16:\"App Website Menu\";s:5:\"alias\";s:16:\"app-website-menu\";s:3:\"zip\";s:26:\"packs/app-website-menu.zip\";s:3:\"uid\";s:32:\"c3c100db368c091d01852df9851b9840\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:26:14\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:594;a:25:{s:2:\"id\";s:3:\"626\";s:5:\"title\";s:16:\"App Website Hero\";s:5:\"alias\";s:16:\"app-website-hero\";s:3:\"zip\";s:26:\"packs/app-website-hero.zip\";s:3:\"uid\";s:32:\"4b42974b08f2923986932ed529974d6f\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:29:00\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:13:\" zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:595;a:25:{s:2:\"id\";s:3:\"627\";s:5:\"title\";s:20:\"App Download Buttons\";s:5:\"alias\";s:20:\"app-download-buttons\";s:3:\"zip\";s:30:\"packs/app-download-buttons.zip\";s:3:\"uid\";s:32:\"d5ecce65284cc95c506185e6f6291d55\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:31:22\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:596;a:25:{s:2:\"id\";s:3:\"628\";s:5:\"title\";s:17:\"App Website About\";s:5:\"alias\";s:17:\"app-website-about\";s:3:\"zip\";s:27:\"packs/app-website-about.zip\";s:3:\"uid\";s:32:\"984477b3ea7c943a7c6be78950754e3c\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:33:06\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:597;a:25:{s:2:\"id\";s:3:\"629\";s:5:\"title\";s:20:\"App Website Features\";s:5:\"alias\";s:20:\"app-website-features\";s:3:\"zip\";s:30:\"packs/app-website-features.zip\";s:3:\"uid\";s:32:\"206a0f73553c974ad86790fba6a13efd\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:35:08\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:598;a:25:{s:2:\"id\";s:3:\"630\";s:5:\"title\";s:21:\"App Website Video Cta\";s:5:\"alias\";s:21:\"app-website-video-cta\";s:3:\"zip\";s:31:\"packs/app-website-video-cta.zip\";s:3:\"uid\";s:32:\"19b2930f9cd9840dccbe94cb1cc435e2\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:36:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:599;a:25:{s:2:\"id\";s:3:\"631\";s:5:\"title\";s:23:\"App Website Screenshots\";s:5:\"alias\";s:23:\"app-website-screenshots\";s:3:\"zip\";s:33:\"packs/app-website-screenshots.zip\";s:3:\"uid\";s:32:\"94ce8eeecb7ffad62adc2d29b203f9d2\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:38:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:600;a:25:{s:2:\"id\";s:3:\"632\";s:5:\"title\";s:22:\"App Testimonials Title\";s:5:\"alias\";s:22:\"app-testimonials-title\";s:3:\"zip\";s:32:\"packs/app-testimonials-title.zip\";s:3:\"uid\";s:32:\"bea74fa6e180fe23007c3d215b1b0704\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:40:21\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:601;a:25:{s:2:\"id\";s:3:\"633\";s:5:\"title\";s:24:\"App Website Testimonials\";s:5:\"alias\";s:24:\"app-website-testimonials\";s:3:\"zip\";s:34:\"packs/app-website-testimonials.zip\";s:3:\"uid\";s:32:\"e7438a870ac1007da4c7821056d511fc\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:41:59\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:107:\" offset=\"t:-300px,-300px,-300px,-250px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\" zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:602;a:25:{s:2:\"id\";s:3:\"634\";s:5:\"title\";s:16:\"App Website Team\";s:5:\"alias\";s:16:\"app-website-team\";s:3:\"zip\";s:26:\"packs/app-website-team.zip\";s:3:\"uid\";s:32:\"d9013f2968e43f696f8cc33fa3524071\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:43:40\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:94:\" offset=\"t:-350px,-350px,-350px,-300px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:603;a:25:{s:2:\"id\";s:3:\"635\";s:5:\"title\";s:18:\"App Website Footer\";s:5:\"alias\";s:18:\"app-website-footer\";s:3:\"zip\";s:28:\"packs/app-website-footer.zip\";s:3:\"uid\";s:32:\"5e13126b929feb389f9e083f3476ec46\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:45:12\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:604;a:25:{s:2:\"id\";s:3:\"636\";s:5:\"title\";s:15:\"App Video Modal\";s:5:\"alias\";s:15:\"app-video-modal\";s:3:\"zip\";s:25:\"packs/app-video-modal.zip\";s:3:\"uid\";s:32:\"7fe8115d0b6158c90fe92d1144ed7b01\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:46:49\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:605;a:25:{s:2:\"id\";s:3:\"637\";s:5:\"title\";s:25:\"Testimonial Carousel Pack\";s:5:\"alias\";s:25:\"testimonial-carousel-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"testimonial-carousel-pack\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:38:17\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:606;a:25:{s:2:\"id\";s:3:\"638\";s:5:\"title\";s:22:\"Testimonial Carousel 1\";s:5:\"alias\";s:22:\"testimonial-carousel-1\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-1.zip\";s:3:\"uid\";s:32:\"1cc1f92edb4edd47f880c0b4f77e343d\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:41:02\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:607;a:25:{s:2:\"id\";s:3:\"639\";s:5:\"title\";s:22:\"Testimonial Carousel 2\";s:5:\"alias\";s:22:\"testimonial-carousel-2\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-2.zip\";s:3:\"uid\";s:32:\"b6ad1675b8d14c0ccc63ffc01b221aac\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:43:25\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:608;a:25:{s:2:\"id\";s:3:\"640\";s:5:\"title\";s:22:\"Testimonial Carousel 3\";s:5:\"alias\";s:22:\"testimonial-carousel-3\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-3.zip\";s:3:\"uid\";s:32:\"cb4a72fb40fc400a71754f71b9bb2d6e\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:46:01\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:609;a:25:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:22:\"Testimonial Carousel 4\";s:5:\"alias\";s:22:\"testimonial-carousel-4\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-4.zip\";s:3:\"uid\";s:32:\"bfca98d6b4042b38df044e9e2a6ca983\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:47:57\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:610;a:25:{s:2:\"id\";s:3:\"642\";s:5:\"title\";s:22:\"Testimonial Carousel 5\";s:5:\"alias\";s:22:\"testimonial-carousel-5\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-5.zip\";s:3:\"uid\";s:32:\"4a9b9c72b51628e1343adde9bff3915f\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:49:27\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:611;a:22:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:28:\"Deep Dive Ocean Water Effect\";s:5:\"alias\";s:9:\"deep-dive\";s:3:\"zip\";s:13:\"deep-dive.zip\";s:3:\"uid\";s:32:\"5cc0599857b0108fe4e76adc7fbf9a16\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/deep-dive-ocean-water-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">Take a dive into the ocean with this 3D Particles Animation template for Slider Revolution.<br>\r\nThe scroll-based interaction makes this hero module an absolute eye-catcher for any ocean-related website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:23:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:612;a:22:{s:2:\"id\";s:3:\"644\";s:5:\"title\";s:22:\"Particle Wave Showcase\";s:5:\"alias\";s:22:\"particle-wave-showcase\";s:3:\"zip\";s:26:\"particle-wave-showcase.zip\";s:3:\"uid\";s:32:\"1c9ac477fd636078d1812d8d98060899\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/particle-wave-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:307:\"<span class=\"ttm_content\">Is your website missing that one unique design element to set it apart from your competition? The Particle Wave addon for Slider Revolution enables you to add interactive, 3D particles background animation effects that will amaze your clients!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:9:\"specialfx\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:30:08\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:613;a:22:{s:2:\"id\";s:3:\"645\";s:5:\"title\";s:17:\"Video Hero Header\";s:5:\"alias\";s:17:\"video-hero-header\";s:3:\"zip\";s:21:\"video-hero-header.zip\";s:3:\"uid\";s:32:\"f6a715d4b10e0746f7eb5100836ba1ab\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";s:7:\"preview\";s:61:\"https://www.sliderrevolution.com/templates/video-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">Get ahead with this modern, futuristic video hero header with colorful gradients and a polygon particle wave.<br>\r\nShowcase the highlights of your tech-related business website with a video button that demands to be clicked.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:33:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:614;a:22:{s:2:\"id\";s:3:\"646\";s:5:\"title\";s:28:\"Solar System Showcase Slider\";s:5:\"alias\";s:28:\"solar-system-showcase-slider\";s:3:\"zip\";s:32:\"solar-system-showcase-slider.zip\";s:3:\"uid\";s:32:\"40f7b26ea7f8228d40e8e9cf0f34b5e8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/solar-system-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Want to amaze your users ? Look no further.  Showcase products, images or anything you can think of with this highly capable and easily customisable full screen slider. </span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:360:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:50:27\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:615;a:22:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:26:\"Optic Shop Showcase Slider\";s:5:\"alias\";s:26:\"Optic-shop-showcase-slider\";s:3:\"zip\";s:30:\"Optic-shop-showcase-slider.zip\";s:3:\"uid\";s:32:\"01509228c996ad45c2179d03654f499b\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/optic-shop-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This image slider is the perfect showcase for any optic shop, utilizing the blur effect in a brilliant way. It\'s not just made for your optic showcase but also a great fit for any modern product presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-02-16 16:41:07\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:616;a:22:{s:2:\"id\";s:3:\"648\";s:5:\"title\";s:27:\"WordPress Charts And Graphs\";s:5:\"alias\";s:24:\"charts-template-showcase\";s:3:\"zip\";s:28:\"charts-template-showcase.zip\";s:3:\"uid\";s:32:\"4ae2fe61830f96c6c5b316368c1ad2c6\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/wordpress-charts-and-graphs/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.17\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">Who says data has to look boring? With our WordPress charts addon, you can create eye-catching sliders and hero sections with interactive and stunning-looking charts.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:341:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-03 15:55:16\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:617;a:25:{s:2:\"id\";s:3:\"649\";s:5:\"title\";s:31:\"Fashion Website Slider Template\";s:5:\"alias\";s:31:\"fashion-website-slider-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"fashion-website-slider-template\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/fashion-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:00:36\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:618;a:25:{s:2:\"id\";s:3:\"650\";s:5:\"title\";s:22:\"Fashion Website Slider\";s:5:\"alias\";s:22:\"fashion-website-slider\";s:3:\"zip\";s:32:\"packs/fashion-website-slider.zip\";s:3:\"uid\";s:32:\"8fb8379f47346173fa0dd402dda37360\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/fashion-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:04:56\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:619;a:25:{s:2:\"id\";s:3:\"651\";s:5:\"title\";s:28:\"Fashion Website Slider Modal\";s:5:\"alias\";s:28:\"fashion-website-slider-modal\";s:3:\"zip\";s:38:\"packs/fashion-website-slider-modal.zip\";s:3:\"uid\";s:32:\"788f34043b6a5fcbfa5fc1c3322fb502\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/fashion-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:08:21\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:620;a:22:{s:2:\"id\";s:3:\"652\";s:5:\"title\";s:24:\"Furniture Website Slider\";s:5:\"alias\";s:24:\"furniture-website-slider\";s:3:\"zip\";s:28:\"furniture-website-slider.zip\";s:3:\"uid\";s:32:\"8575493ed5fd1ee2e671e67479fdeccb\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/furniture-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Promote products or create stunning landing pages with the Furniture Website Slider. Each slide comes with a different layout that can be used as a hero module or on an individual section on your website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-23 14:05:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:621;a:22:{s:2:\"id\";s:3:\"653\";s:5:\"title\";s:26:\"Fitness Gym Website Slider\";s:5:\"alias\";s:26:\"fitness-gym-website-slider\";s:3:\"zip\";s:30:\"fitness-gym-website-slider.zip\";s:3:\"uid\";s:32:\"86894d98e34a590e80a1d0cd3d7dc819\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/fitness-gym-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">Make your website visitors want to hit the gym once they see this fitness website slider. The background videos and unique, masked slide transitions make this module stand out!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-04-19 11:02:01\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:622;a:25:{s:2:\"id\";s:3:\"654\";s:5:\"title\";s:36:\"Ai & Robotics Webside Slider Package\";s:5:\"alias\";s:35:\"ai--robotics-webside-slider-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:35:\"ai--robotics-webside-slider-package\";s:3:\"img\";s:51:\"packages/ai-and-robotics-website-slider-package.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:12:25\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:623;a:25:{s:2:\"id\";s:3:\"655\";s:5:\"title\";s:28:\"Ai & Robotics Website Slider\";s:5:\"alias\";s:30:\"ai-and-robotics-website-slider\";s:3:\"zip\";s:40:\"packs/ai-and-robotics-website-slider.zip\";s:3:\"uid\";s:32:\"e40b7296d1519972029e9744a0c09b29\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide1.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:16:48\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:624;a:25:{s:2:\"id\";s:3:\"656\";s:5:\"title\";s:14:\"AI Video Modal\";s:5:\"alias\";s:14:\"ai-video-modal\";s:3:\"zip\";s:24:\"packs/ai-video-modal.zip\";s:3:\"uid\";s:32:\"aab36a599413b7e66dfdda8f517b47b1\";s:3:\"img\";s:25:\"ai-video-modal/slide1.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/ai-and-robotics-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-19 15:20:55\";s:7:\"package\";s:36:\"Ai & Robotics Webside Slider Package\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"57\";s:9:\"installed\";b:0;}i:625;a:23:{s:2:\"id\";s:3:\"657\";s:5:\"title\";s:33:\"Minimal Typography Website Slider\";s:5:\"alias\";s:33:\"minimal-typography-website-slider\";s:3:\"zip\";s:37:\"minimal-typography-website-slider.zip\";s:3:\"uid\";s:32:\"43cf63d6541d33b7d4e59350935d73bf\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide1.jpg\";s:7:\"preview\";s:77:\"https://www.sliderrevolution.com/templates/minimal-typography-website-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.20\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">Make the hero section on your website stand out with this minimal, typography-based hero slider, featuring cool parallax bubble effects and fluid slide transitions.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:9:\"specialfx\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-04-25 14:39:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:626;a:22:{s:2:\"id\";s:3:\"658\";s:5:\"title\";s:19:\"404 Page Collection\";s:5:\"alias\";s:19:\"404-page-collection\";s:3:\"zip\";s:23:\"404-page-collection.zip\";s:3:\"uid\";s:32:\"3f0b25b5e893b170536a498939465a1a\";s:3:\"img\";s:30:\"404-page-collection/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/404-page-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.21\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:167:\"<span class=\"ttm_content\">Show your lost website visitors a funny and lighthearted message with our 404 page template collection.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-05-04 11:30:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:627;a:22:{s:2:\"id\";s:3:\"659\";s:5:\"title\";s:24:\"eCommerce Product Slider\";s:5:\"alias\";s:21:\"ecommerce-sale-slider\";s:3:\"zip\";s:25:\"ecommerce-sale-slider.zip\";s:3:\"uid\";s:32:\"49ca4743090cddca705ee108eae967c5\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/ecommerce-product-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">So you have an eCommerce shop and are looking for the ultimate sales pitch on your landing page? Trying to convert your precious visitors into more sales? Look no further than our eCommerce Product Slider!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-05-17 14:22:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:628;a:22:{s:2:\"id\";s:3:\"660\";s:5:\"title\";s:19:\"Fashion Shop Slider\";s:5:\"alias\";s:19:\"fashion-shop-slider\";s:3:\"zip\";s:23:\"fashion-shop-slider.zip\";s:3:\"uid\";s:32:\"e488e9126dbe4a34c02c89a1115f4ff9\";s:3:\"img\";s:30:\"fashion-shop-slider/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/fashion-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">Customize texts, images, and colors in seconds and have this beast of a shop slider running on your own website in no time.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-05-18 13:24:56\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:629;a:23:{s:2:\"id\";s:3:\"661\";s:5:\"title\";s:29:\"Lingerie Store Website Slider\";s:5:\"alias\";s:29:\"lingerie-store-website-slider\";s:3:\"zip\";s:33:\"lingerie-store-website-slider.zip\";s:3:\"uid\";s:32:\"7bdad27521b7c9b171b618dff2fa0315\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/lingerie-store-website-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">This hero slider also includes optional menu navigation and links, in case you want to use it as a standalone landing page.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-05-18 13:28:21\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}}s:6:\"slides\";a:610:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:19:\"Photographer-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";}}s:27:\"Photographer-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";}}s:21:\"Photographer-Showcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";}}s:22:\"Photographer-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";}}s:21:\"Photographer-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";}}s:19:\"Photographer-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";}}s:18:\"Photographer-Modal\";a:1:{i:0;a:2:{s:5:\"title\";s:8:\"Slider 1\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}s:24:\"creative-hero-collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"creative-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"creative-hero-collection/slide3.jpg\";}}s:19:\"photographer-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"photographer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"photographer-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"photographer-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"photographer-slider/slide5.jpg\";}}s:17:\"realestate-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"realestate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"realestate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"realestate-slider/slide4.jpg\";}}s:19:\"saas-product-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"saas-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"saas-product-slider/slide3.jpg\";}}s:27:\"cinematic-wildlife-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";}}s:25:\"cinematic-wildlife-slider\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide7.jpg\";}}s:24:\"cinematic-wildlife-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide7.jpg\";}}s:32:\"gaming-stats-presentation-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide5.jpg\";}}s:15:\"coffee-flavours\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"coffee-flavors/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"coffee-flavors/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"coffee-flavors/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"coffee-flavors/slide5.jpg\";}}s:15:\"showreel-slider\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"showreel-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"showreel-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"showreel-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"showreel-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"showreel-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"showreel-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:26:\"showreel-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:26:\"showreel-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:27:\"showreel-slider/slide10.jpg\";}}s:16:\"visual-art-forms\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"visual-art-forms/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"visual-art-forms/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"visual-art-forms/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"visual-art-forms/slide5.jpg\";}}s:14:\"bg-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"bg-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"bg-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"bg-effect-hero/slide4.jpg\";}}s:9:\"cyberfunk\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"cyberfunk/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"cyberfunk/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"cyberfunk/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"cyberfunk/slide5.jpg\";}}s:21:\"motion-blur-portfolio\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide8.jpg\";}}s:18:\"portal-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"portal-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"portal-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"portal-effect-hero/slide4.jpg\";}}s:15:\"winery-timeline\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"winery-timeline/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"winery-timeline/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"winery-timeline/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"winery-timeline/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"winery-timeline/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"winery-timeline/slide7.jpg\";}}s:25:\"smart-living-one-pager-v1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";}}s:25:\"smart-living-one-pager-v2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";}}s:25:\"smart-living-one-pager-v3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";}}s:6:\"menu-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";}}s:14:\"onepage-hero-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";}}s:6:\"about1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"about1/slide1.jpg\";}}s:9:\"services1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"services1/slide1.jpg\";}}s:9:\"projects1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"projects1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"projects1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"projects1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"projects1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:20:\"projects1/slide6.jpg\";}}s:8:\"footer-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";}}s:23:\"explainer-block-1-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";}}s:23:\"explainer-block-1-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";}}s:16:\"projects-modal-1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-1/slide6.jpg\";}}s:6:\"menu-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";}}s:6:\"hero-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";}}s:10:\"services-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";}}s:7:\"about-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";}}s:10:\"projects-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"projects-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"projects-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:21:\"projects-2/slide6.jpg\";}}s:7:\"footer2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";}}s:23:\"explainer-block-2-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";}}s:23:\"explainer-block-2-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";}}s:16:\"projects-modal-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-2/slide6.jpg\";}}s:6:\"menu-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";}}s:6:\"hero-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:17:\"hero-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:17:\"hero-3/slide3.jpg\";}}s:7:\"about-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";}}s:10:\"services-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";}}s:10:\"projects-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-3/slide3.jpg\";}}s:8:\"footer-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";}}s:23:\"explainer-block-3-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";}}s:23:\"explainer-block-3-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";}}s:16:\"projects-modal-3\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-3/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-3/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-3/slide6.jpg\";}}s:25:\"urban-street-skate-slider\";a:12:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide12.jpg\";}}s:13:\"yummy-burgers\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"yummy-burgers/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"yummy-burgers/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"yummy-burgers/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"yummy-burgers/slide5.jpg\";}}s:37:\"tattoo-event-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";}}s:24:\"tattoo-event-hero-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide3.jpg\";}}s:18:\"tattoo-event-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";}}s:20:\"tattoo-event-artists\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"tattoo-event-artists/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"tattoo-event-artists/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"tattoo-event-artists/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"tattoo-event-artists/slide5.jpg\";}}s:21:\"tattoo-event-schedule\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide3.jpg\";}}s:17:\"tattoo-event-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";}}s:19:\"tattoo-event-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";}}s:24:\"startup-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";}}s:12:\"startup-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";}}s:12:\"startup-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";}}s:13:\"startup-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";}}s:18:\"startup-features-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";}}s:18:\"startup-features-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";}}s:12:\"startup-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";}}s:15:\"startup-reviews\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";}}s:11:\"startup-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";}}s:14:\"startup-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";}}s:19:\"startup-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";}}s:32:\"christmas-gift-card-landing-page\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";}}s:24:\"christmas-landing-page-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";}}s:24:\"christmas-landing-page-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";}}s:12:\"image-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"image-slider/slide-2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"image-slider/slide-3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"image-slider/slide-4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"image-slider/slide-5.jpg\";}}s:17:\"full-width-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"full-width-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"full-width-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"full-width-slider/slide4.jpg\";}}s:20:\"app-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";}}s:16:\"app-website-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";}}s:16:\"app-website-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";}}s:20:\"app-download-buttons\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";}}s:17:\"app-website-about\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"app-website-about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"app-website-about/slide3.jpg\";}}s:20:\"app-website-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";}}s:21:\"app-website-video-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";}}s:23:\"app-website-screenshots\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"app-website-screenshots/slide2.jpg\";}}s:22:\"app-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";}}s:24:\"app-website-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";}}s:16:\"app-website-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";}}s:18:\"app-website-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";}}s:15:\"app-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";}}s:25:\"testimonial-carousel-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";}}s:22:\"testimonial-carousel-1\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide4.jpg\";}}s:22:\"testimonial-carousel-2\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide5.jpg\";}}s:22:\"testimonial-carousel-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide3.jpg\";}}s:22:\"testimonial-carousel-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";}}s:22:\"testimonial-carousel-5\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide4.jpg\";}}s:9:\"deep-dive\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";}}s:22:\"particle-wave-showcase\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"particle-wave-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"particle-wave-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"particle-wave-showcase/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"particle-wave-showcase/slide5.jpg\";}}s:17:\"video-hero-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";}}s:28:\"solar-system-showcase-slider\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide9.jpg\";}}s:26:\"Optic-shop-showcase-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide5.jpg\";}}s:24:\"charts-template-showcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";}}s:31:\"fashion-website-slider-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";}}s:22:\"fashion-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fashion-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"fashion-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"fashion-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"fashion-website-slider/slide5.jpg\";}}s:28:\"fashion-website-slider-modal\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide5.jpg\";}}s:24:\"furniture-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"furniture-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"furniture-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"furniture-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"furniture-website-slider/slide5.jpg\";}}s:26:\"fitness-gym-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:37:\"fitness-gym-website-slider/slide5.jpg\";}}s:35:\"ai--robotics-webside-slider-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:51:\"packages/ai-and-robotics-website-slider-package.jpg\";}}s:30:\"ai-and-robotics-website-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"ai-and-robotics-website-slider/slide4.jpg\";}}s:14:\"ai-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ai-video-modal/slide1.jpg\";}}s:33:\"minimal-typography-website-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"minimal-typography-website-slider/slide4.jpg\";}}s:19:\"404-page-collection\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"404-page-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"404-page-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"404-page-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"404-page-collection/slide4.jpg\";}}s:21:\"ecommerce-sale-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"ecommerce-sale-slider/slide4.jpg\";}}s:19:\"fashion-shop-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fashion-shop-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"fashion-shop-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"fashion-shop-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"fashion-shop-slider/slide4.jpg\";}}s:29:\"lingerie-store-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:40:\"lingerie-store-website-slider/slide5.jpg\";}}}}','no'),(140837,'user_registration_admin_notices','a:0:{}','yes'),(357782,'_transient_2ce28ceb7_elements','a:0:{}','yes'),(357783,'_transient_2ce28ceb7_custom_js','','yes'),(357784,'_transient_2ce28ceb7_updated_at','1605059632','yes'),(357785,'_transient_66b3eb4d0_elements','a:0:{}','yes'),(361397,'_transient_f32b69500_elements','a:0:{}','yes'),(361398,'_transient_f32b69500_custom_js','','yes'),(361399,'_transient_f32b69500_updated_at','1605059632','yes'),(635264,'37a6d66e5_updated_at','1618609366','yes'),(1906909,'_transient_timeout_mc4wp_mailchimp_lists','1657512141','no'),(1906910,'_transient_mc4wp_mailchimp_lists','a:0:{}','no'),(357751,'_transient_2ff18c34e_elements','a:0:{}','yes'),(357752,'_transient_2ff18c34e_custom_js','','yes'),(357753,'_transient_2ff18c34e_updated_at','1605059632','yes'),(357762,'_transient_fb910f9ff_elements','a:0:{}','yes'),(357763,'_transient_fb910f9ff_custom_js','','yes'),(357764,'_transient_fb910f9ff_updated_at','1605059632','yes'),(357766,'_transient_bc052ff1d_elements','a:0:{}','yes'),(357767,'_transient_bc052ff1d_custom_js','','yes'),(357768,'_transient_bc052ff1d_updated_at','1605059632','yes'),(357776,'_transient_adbe26916_elements','a:0:{}','yes'),(357777,'_transient_adbe26916_custom_js','','yes'),(357778,'_transient_adbe26916_updated_at','1605059632','yes'),(364088,'wp-smush-hide_upgrade_notice','1','no'),(364045,'ure_role_additional_options_values','a:1:{s:5:\"owner\";a:1:{s:14:\"hide_admin_bar\";i:1;}}','yes');
INSERT INTO `lrwp_options` VALUES (173650,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:53:\"5 Expert Tips To Improve Your Workflow With Elementor\";s:7:\"excerpt\";s:294:\"Our team of Elementor experts got together and came up with a list of features that will improve your workflow and make Elementor even easier to use. In this article, we’ll take a look at where you can access these features and provide you with tips on how to use them the way the experts do.\";s:7:\"created\";i:1654757528;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:124:\"https://elementor.com/blog/tips-to-improve-workflow/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:57:\"Elementor Acquires Strattic To Redefine WordPress Hosting\";s:7:\"excerpt\";s:315:\"Elementor acquires Strattic, the leading WordPress static hosting solution for secure, high-performance websites. This decision strengthens our ability to provide an end-to-end solution to millions of Web Creators by harnessing the power of static hosting technology and marks a significant milestone for Elementor.\";s:7:\"created\";i:1654673051;s:5:\"badge\";s:12:\"Announcement\";s:3:\"url\";s:127:\"https://elementor.com/blog/elementor-acquires-strattic/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:54:\"Email Marketing Strategies: How To Crush Email in 2022\";s:7:\"excerpt\";s:287:\"Email marketing is one of the most profitable marketing channels, but aside from copywriting and visual design, it also requires a strategic mix of testing, measurement, and automation for success. In this article, we\'ll go over all the basics of email marketing to help you get started.\";s:7:\"created\";i:1653910376;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:124:\"https://elementor.com/blog/email-marketing-strategy/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(417140,'_transient_eae880656_custom_js','','yes'),(417141,'_transient_eae880656_updated_at','1605059632','yes'),(417139,'_transient_eae880656_elements','a:0:{}','yes'),(393662,'_transient_dfc7a5b58_elements','a:0:{}','yes'),(393663,'_transient_dfc7a5b58_custom_js','','yes'),(393664,'_transient_dfc7a5b58_updated_at','1605059632','yes'),(510394,'weforms_review_notice_dismiss','yes','yes'),(357816,'_transient_77683d92d_elements','a:0:{}','yes'),(357817,'_transient_77683d92d_custom_js','','yes'),(357818,'_transient_77683d92d_updated_at','1605059632','yes'),(362728,'_transient_a8b7c0f29_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362729,'_transient_a8b7c0f29_custom_js','','yes'),(362730,'_transient_a8b7c0f29_updated_at','1605059632','yes'),(398608,'_transient_a5c46b63d_elements','a:0:{}','yes'),(398609,'_transient_a5c46b63d_custom_js','','yes'),(398610,'_transient_a5c46b63d_updated_at','1605059632','yes'),(351582,'wp_mail_smtp_version','2.4.0','no'),(351583,'wp_mail_smtp','a:8:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:26:\"contact@lantern-realty.com\";s:9:\"from_name\";s:30:\"Lantern Realty and Development\";s:6:\"mailer\";s:4:\"smtp\";s:11:\"return_path\";b:1;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:1;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:23:\"mail.lantern-realty.com\";s:10:\"encryption\";s:3:\"ssl\";s:4:\"port\";i:465;s:4:\"user\";s:26:\"contact@lantern-realty.com\";s:4:\"pass\";s:72:\"sKPe6C3O74WggJdFislvPGUrEVTGevm1FQh8iw1FpKfxrPc45751WFlf1iDgx4vUcLvGDdq1\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"sendgrid\";a:1:{s:7:\"api_key\";s:0:\"\";}s:5:\"gmail\";a:2:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}}','no'),(351584,'wp_mail_smtp_activated_time','1602512515','no'),(351585,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1602512515;}','yes'),(351590,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1605056682;s:9:\"dismissed\";b:1;}','yes'),(351587,'wp_mail_smtp_migration_version','4','yes'),(351598,'wp_mail_smtp_debug','a:0:{}','no'),(319046,'elementor_controls_usage','a:2:{s:7:\"wp-page\";a:19:{s:5:\"image\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:7:{s:5:\"image\";i:18;s:5:\"align\";i:15;s:7:\"link_to\";i:18;s:13:\"open_lightbox\";i:15;s:4:\"link\";i:7;s:14:\"caption_source\";i:3;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:119;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:119;s:16:\"content_position\";i:2;s:5:\"align\";i:1;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:46;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:46;s:11:\"header_size\";i:9;s:5:\"align\";i:36;s:4:\"size\";i:31;s:4:\"link\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:20:\"typography_font_size\";i:1;s:26:\"typography_text_decoration\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:32;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:23;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:23;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:9;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:85;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:6:\"layout\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:15:\"column_position\";i:1;s:15:\"stretch_section\";i:1;s:3:\"gap\";i:1;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:22;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:32;s:16:\"background_color\";i:31;s:16:\"background_image\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:15;}}}}s:26:\"houzez-property-breadcrumb\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:0:{}}s:22:\"houzez_elementor_space\";a:2:{s:5:\"count\";i:39;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:21;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:8:\"progress\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_progress\";a:3:{s:5:\"title\";i:2;s:7:\"percent\";i:2;s:10:\"inner_text\";i:2;}}s:5:\"style\";a:2:{s:22:\"section_progress_style\";a:5:{s:10:\"bar_height\";i:2;s:31:\"bar_inner_typography_typography\";i:2;s:30:\"bar_inner_typography_font_size\";i:2;s:9:\"bar_color\";i:2;s:17:\"bar_border_radius\";i:1;}s:13:\"section_title\";a:7:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:1;}}}}s:24:\"wp-widget-weforms_widget\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:30;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:11:\"button_type\";i:30;s:4:\"text\";i:30;s:5:\"align\";i:30;s:4:\"size\";i:28;s:13:\"selected_icon\";i:4;s:4:\"link\";i:30;s:11:\"icon_indent\";i:24;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:12;}}}}s:23:\"houzez_elementor_agents\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:13;s:7:\"orderby\";i:13;s:11:\"posts_limit\";i:12;s:7:\"columns\";i:12;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:0:{}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:0:{}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:7;}}}}s:22:\"wp-widget-sticky-posts\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:25:\"houzez_elementor_icon_box\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"content_section\";a:1:{s:10:\"icon_boxes\";i:2;}s:24:\"content_section_settings\";a:1:{s:9:\"padding_a\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_iconbox_style\";a:4:{s:18:\"icon_primary_color\";i:2;s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;s:15:\"title_spacing_a\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:12;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:12;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:12;s:15:\"icon_self_align\";i:12;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:12;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:12;s:4:\"zoom\";i:12;s:6:\"height\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:20:\"eael-creative-button\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:18;s:30:\"creative_button_secondary_text\";i:18;s:24:\"creative_button_link_url\";i:18;s:29:\"eael_creative_button_icon_new\";i:18;s:32:\"eael_creative_button_icon_indent\";i:18;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:12;s:34:\"eael_creative_button_border_radius\";i:18;s:30:\"eael_creative_button_alignment\";i:18;s:26:\"eael_creative_button_width\";i:18;s:30:\"eael_creative_button_icon_size\";i:18;s:42:\"eael_creative_button_typography_typography\";i:6;s:43:\"eael_creative_button_typography_font_family\";i:6;s:43:\"eael_creative_button_typography_font_weight\";i:6;s:43:\"eael_creative_button_hover_background_color\";i:6;}}}}s:38:\"wp-widget-ihomefinderquicksearchwidget\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}}s:7:\"section\";a:7:{s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:5:\"align\";i:2;s:7:\"link_to\";i:2;s:13:\"open_lightbox\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:8:\"overflow\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:3;}}}}s:22:\"houzez_elementor_space\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}}}','no'),(348553,'weforms_version','1.6.13','yes'),(348554,'widget_weforms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(351602,'wpuf_general','a:4:{s:16:\"recaptcha_public\";s:40:\"6LfXgNYZAAAAAOBEx0Em2yCeUBlEsFZP8aiFC1g2\";s:17:\"recaptcha_private\";s:40:\"6LfXgNYZAAAAAOsnMaO1YC_KYp-dqH8aR9bu1BJ1\";s:14:\"recaptcha_type\";s:2:\"v2\";s:12:\"email_footer\";b:1;}','yes'),(348498,'erp_email_settings_employee-welcome','a:3:{s:7:\"subject\";s:37:\"Welcome {full_name} to {company_name}\";s:7:\"heading\";s:29:\"Welcome Onboard {first_name}!\";s:4:\"body\";s:1015:\"Dear {full_name},\n\nWelcome aboard as a <strong>{job_title}</strong> in our <strong>{dept_title}</strong> team at <strong>{company_name}</strong>! I am pleased to have you working with us. You were selected for employment due to the attributes that you displayed that appear to match the qualities I look for in an employee.\n\nI’m looking forward to seeing you grow and develop into an outstanding employee that exhibits a high level of care, concern, and compassion for others. I hope that you will find your work to be rewarding, challenging, and meaningful.\n\nYour <strong>{type}</strong> employment will start from <strong>{joined_date}</strong> and you will be reporting to <strong>{reporting_to}</strong>.\n\nPlease take your time and review our yearly goals so that you can know what is expected and make a positive contribution. Again, I look forward to seeing you grow as a professional while enhancing the lives of the clients entrusted in your care.\n\nSincerely,\nManager Name\nCEO, Company Name\n\n{login_info}\";}','yes'),(348499,'erp_email_settings_new-leave-request','a:3:{s:7:\"subject\";s:47:\"New leave request received from {employee_name}\";s:7:\"heading\";s:17:\"New Leave Request\";s:4:\"body\";s:316:\"Hello,\n\nA new leave request has been received from {employee_url}.\n\n<strong>Leave type:</strong> {leave_type}\n<strong>Date:</strong> {date_from} to {date_to}\n<strong>Days:</strong> {no_days}\n<strong>Reason:</strong> {reason}\n\nPlease approve/reject this leave application by going following:\n\n{requests_url}\n\nThanks.\";}','yes'),(348500,'erp_email_settings_approved-leave-request','a:3:{s:7:\"subject\";s:36:\"Your leave request has been approved\";s:7:\"heading\";s:22:\"Leave Request Approved\";s:4:\"body\";s:192:\"Hello {employee_name},\n\nYour <strong>{leave_type}</strong> type leave request for <strong>{no_days} days</strong> from {date_from} to {date_to} has been approved.\n\nRegards\nManager Name\nCompany\";}','yes'),(348501,'erp_email_settings_rejected-leave-request','a:3:{s:7:\"subject\";s:36:\"Your leave request has been rejected\";s:7:\"heading\";s:22:\"Leave Request Rejected\";s:4:\"body\";s:237:\"Hello {employee_name},\n\nYour <strong>{leave_type}</strong> type leave request for <strong>{no_days} days</strong> from {date_from} to {date_to} has been rejected.\n\nThe reason of rejection is: {reject_reason}\n\nRegards\nManager Name\nCompany\";}','yes'),(348502,'erp_email_settings_new-task-assigned','a:3:{s:7:\"subject\";s:33:\"New task has been assigned to you\";s:7:\"heading\";s:17:\"New Task Assigned\";s:4:\"body\";s:157:\"Hello {employee_name},\n\nA new task <strong>{task_title}</strong> has been assigned to you by {created_by}.\nDue Date: {due_date}\n\nRegards\nManager Name\nCompany\";}','yes'),(348503,'erp_email_settings_new-contact-assigned','a:3:{s:7:\"subject\";s:36:\"New contact has been assigned to you\";s:7:\"heading\";s:20:\"New Contact Assigned\";s:4:\"body\";s:141:\"Hello {employee_name},\n\nA new contact <strong>{contact_name}</strong> has been assigned to you by {created_by}.\n\nRegards\nManager Name\nCompany\";}','yes'),(348504,'erp_email_settings_hiring-anniversary-wish','a:3:{s:7:\"subject\";s:40:\"Congratulation for Your Work Anniversary\";s:7:\"heading\";s:51:\"Congratulation for Passing One More Year With Us :)\";s:4:\"body\";s:512:\"Congratulations {full_name}!\n\nYou have been a model employee for {total_year} years now. You are one of my few original employees and have certainly become an asset to this company. I appreciate the selfless service you\'ve given for so many years. Without the loyalty and hard work of experts like you who helped us get things started, we could never have achieved our present stature. I hope the gift I sent will reflect the high esteem I have for you.\n\nMay you enjoy the fruits of your labors for years to come\";}','yes'),(348548,'weforms_installed','1602350605','yes'),(348507,'wp_erp_version','1.6.6','yes'),(348508,'wp_erp_db_version','1.6.6','yes'),(348509,'wp_erp_install_date','1602350148','yes'),(348513,'erp_setup_wizard_ran','1','yes'),(348511,'widget_erp-subscription-from-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(348516,'erp_allow_tracking','no','yes'),(348518,'erp_tracking_skipped','yes','yes'),(348519,'_erp_company','a:9:{s:4:\"logo\";i:0;s:4:\"name\";s:30:\"Lantern Realty and Development\";s:7:\"address\";a:6:{s:9:\"address_1\";s:16:\"Street Address 1\";s:9:\"address_2\";s:14:\"Address Line 2\";s:4:\"city\";s:4:\"City\";s:5:\"state\";s:5:\"State\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"US\";}s:5:\"phone\";s:0:\"\";s:3:\"fax\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:7:\"website\";s:0:\"\";s:8:\"currency\";s:3:\"USD\";s:13:\"business_type\";s:5:\"Other\";}','yes'),(348520,'erp_settings_general','a:5:{s:19:\"gen_financial_month\";s:1:\"1\";s:13:\"gen_com_start\";s:10:\"2018-01-01\";s:11:\"date_format\";s:5:\"m-d-Y\";s:12:\"erp_currency\";s:3:\"148\";s:14:\"erp_debug_mode\";i:0;}','yes'),(348528,'pm_db_version','2.5','yes'),(1896854,'_transient_houzez_category_count','1','yes'),(1250937,'6b39d183c_eael_updated_at','1656030088','no'),(1252126,'a8b7c0f29_eael_updated_at','1656030088','no'),(1252129,'1af74f4bb_eael_updated_at','1656030088','no'),(416686,'_transient_f102f4301_elements','a:0:{}','yes'),(416687,'_transient_f102f4301_custom_js','','yes'),(416688,'_transient_f102f4301_updated_at','1605059632','yes'),(383171,'_transient_9efaa3a54_elements','a:0:{}','yes'),(383172,'_transient_9efaa3a54_custom_js','','yes'),(383173,'_transient_9efaa3a54_updated_at','1605059632','yes'),(371772,'_transient_106a6c241_elements','a:0:{}','yes'),(371773,'_transient_106a6c241_custom_js','','yes'),(371774,'_transient_106a6c241_updated_at','1605059632','yes'),(381145,'_transient_c79fb8884_elements','a:0:{}','yes'),(381146,'_transient_c79fb8884_custom_js','','yes'),(381147,'_transient_c79fb8884_updated_at','1605059632','yes'),(381149,'_transient_adf0381f0_elements','a:0:{}','yes'),(374830,'_transient_89030d065_elements','a:0:{}','yes'),(374831,'_transient_89030d065_custom_js','','yes'),(374832,'_transient_89030d065_updated_at','1605059632','yes'),(365088,'_transient_e0e620acd_updated_at','1605059632','yes'),(358513,'_transient_5d5629283_elements','a:0:{}','yes'),(358514,'_transient_5d5629283_custom_js','','yes'),(358515,'_transient_5d5629283_updated_at','1605059632','yes'),(357867,'_transient_effb69e52_elements','a:0:{}','yes'),(357868,'_transient_effb69e52_custom_js','','yes'),(357869,'_transient_effb69e52_updated_at','1605059632','yes'),(320498,'disallowed_keys','','no'),(320499,'comment_previously_approved','1','yes'),(320500,'auto_plugin_theme_update_emails','a:0:{}','no'),(184365,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),(231109,'widget_a2a_share_save_widget','a:3:{i:2;a:1:{s:5:\"title\";s:15:\"Share This Page\";}i:3;a:1:{s:5:\"title\";s:22:\"Share This With Others\";}s:12:\"_multiwidget\";i:1;}','yes'),(231110,'widget_a2a_follow_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(231115,'addtoany_options','a:37:{s:8:\"position\";s:6:\"bottom\";s:30:\"display_in_posts_on_front_page\";s:2:\"-1\";s:33:\"display_in_posts_on_archive_pages\";s:2:\"-1\";s:19:\"display_in_excerpts\";s:2:\"-1\";s:16:\"display_in_posts\";s:2:\"-1\";s:16:\"display_in_pages\";s:2:\"-1\";s:22:\"display_in_attachments\";s:2:\"-1\";s:15:\"display_in_feed\";s:2:\"-1\";s:7:\"onclick\";s:2:\"-1\";s:9:\"icon_size\";s:2:\"32\";s:7:\"icon_bg\";s:8:\"original\";s:13:\"icon_bg_color\";s:7:\"#2a2a2a\";s:7:\"icon_fg\";s:8:\"original\";s:13:\"icon_fg_color\";s:7:\"#ffffff\";s:6:\"button\";s:10:\"A2A_SVG_32\";s:13:\"button_custom\";s:0:\"\";s:17:\"button_show_count\";s:2:\"-1\";s:6:\"header\";s:0:\"\";s:23:\"additional_js_variables\";s:0:\"\";s:14:\"additional_css\";s:0:\"\";s:12:\"custom_icons\";s:2:\"-1\";s:16:\"custom_icons_url\";s:1:\"/\";s:17:\"custom_icons_type\";s:3:\"png\";s:18:\"custom_icons_width\";s:0:\"\";s:19:\"custom_icons_height\";s:0:\"\";s:5:\"cache\";s:2:\"-1\";s:32:\"display_in_cpt_elementor_library\";s:2:\"-1\";s:23:\"display_in_cpt_property\";s:1:\"1\";s:28:\"display_in_cpt_houzez_agency\";s:2:\"-1\";s:27:\"display_in_cpt_houzez_agent\";s:2:\"-1\";s:11:\"button_text\";s:5:\"Share\";s:24:\"special_facebook_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:25:\"special_pinterest_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:15:\"active_services\";a:8:{i:0;s:8:\"facebook\";i:1;s:18:\"facebook_messenger\";i:2;s:3:\"sms\";i:3;s:9:\"copy_link\";i:4;s:5:\"email\";i:5;s:5:\"print\";i:6;s:9:\"pinterest\";i:7;s:5:\"houzz\";}s:29:\"special_facebook_like_options\";a:2:{s:10:\"show_count\";s:2:\"-1\";s:4:\"verb\";s:4:\"like\";}s:29:\"special_twitter_tweet_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}s:29:\"special_pinterest_pin_options\";a:1:{s:10:\"show_count\";s:2:\"-1\";}}','yes'),(356963,'wp_protect_password_setting_options','{\"ppw_hide_protected_post\":\"false\",\"ppw_hide_selected_post\":[\"ppw_front_page\",\"ppw_category_page\",\"ppw_tag_page\",\"ppw_author_page\",\"ppw_archives_page\",\"ppw_next_previous\",\"ppw_recent_post\",\"ppw_search_results\",\"ppw_feeds\"],\"ppw_hide_protected_page\":\"false\",\"ppw_hide_selected_page\":[\"ppw_front_page\",\"ppw_everywhere_pages\",\"ppw_search_results\"]}','no'),(357000,'pp_basic_settings','','yes'),(357001,'pp_admin_page','','yes'),(357007,'acpwd_settings_options','a:15:{s:10:\"protectway\";s:6:\"cookie\";s:9:\"cookieexp\";s:7:\"7776000\";s:8:\"password\";s:13:\"laJ4MVEfvAJKY\";s:19:\"impacted_categories\";a:1:{i:0;s:2:\"16\";}s:13:\"allowed_users\";a:0:{}s:11:\"only_single\";s:1:\"1\";s:19:\"excerpt_before_pass\";i:0;s:26:\"excerpt_before_pass_length\";s:2:\"25\";s:33:\"excerpt_before_pass_ending_string\";s:6:\" […]\";s:12:\"info_message\";s:66:\"Please enter the team portal password to unlock this announcement.\";s:17:\"input_placeholder\";s:0:\"\";s:13:\"error_message\";s:84:\"Sorry, but this is the wrong password. This password is the same as the team portal.\";s:17:\"valid_button_text\";s:6:\"Unlock\";s:14:\"output_styling\";s:296:\"* Custom css for Access Category Password form */\r\n		.acpwd-container {\r\n		\r\n		}\r\n		\r\n		.acpwd-added-excerpt {\r\n		}\r\n		\r\n		.acpwd-info-message {\r\n		\r\n		}\r\n		\r\n		.acpwd-form {\r\n		\r\n		}\r\n		.acpwd-pass {\r\n		\r\n		}\r\n		\r\n		.acpwd-submit {\r\n		\r\n		}\r\n		\r\n		.acpwd-error-message {\r\n			color: darkred;\r\n		}\";s:14:\"feed_desc_text\";s:68:\"Access to this post restricted, please go to the website to read it.\";}','yes'),(356850,'_transient_9d1693a78_elements','a:0:{}','yes'),(356851,'_transient_9d1693a78_custom_js','','yes'),(356852,'_transient_9d1693a78_updated_at','1605059632','yes'),(364298,'_transient_880fda179_elements','a:0:{}','yes'),(364299,'_transient_880fda179_custom_js','','yes'),(364300,'_transient_880fda179_updated_at','1605059632','yes'),(358630,'_transient_befd17855_custom_js','','yes'),(358631,'_transient_befd17855_updated_at','1605059632','yes'),(356372,'passster_general_settings','a:9:{s:13:\"toggle_cookie\";s:2:\"on\";s:11:\"toggle_ajax\";s:2:\"on\";s:24:\"passster_cookie_duration\";s:1:\"2\";s:10:\"toggle_amp\";s:3:\"off\";s:9:\"toggle_vc\";s:3:\"off\";s:16:\"toggle_elementor\";s:2:\"on\";s:21:\"toggle_beaver_builder\";s:3:\"off\";s:32:\"passster_advanced_delete_options\";s:3:\"off\";s:22:\"third_party_shortcodes\";s:0:\"\";}','yes'),(356373,'passster_advanced_settings','','yes'),(356789,'_transient_c8773739b_custom_js','','yes'),(356790,'_transient_c8773739b_updated_at','1605059632','yes'),(141059,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:30:\"content-protector/inc/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1651363217;s:11:\"plugin_path\";s:39:\"content-protector/content-protector.php\";}}s:7:\"abspath\";s:32:\"/home/lanternrealty/public_html/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:39:\"content-protector/content-protector.php\";s:8:\"sdk_path\";s:30:\"content-protector/inc/freemius\";s:7:\"version\";s:5:\"2.4.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1651363217;}}','yes'),(141060,'fs_debug_mode','','yes'),(141061,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:3:{i:1010;a:3:{s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:79:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/wp-sheet-editor.php\";}i:1938;a:3:{s:4:\"slug\";s:17:\"content-protector\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:39:\"content-protector/content-protector.php\";}i:1021;a:3:{s:4:\"slug\";s:27:\"bulk-edit-posts-on-frontend\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:47:\"bulk-edit-posts-on-frontend/frontend-editor.php\";}}s:11:\"plugin_data\";a:3:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:79:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/wp-sheet-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1588345947;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\";N;s:14:\"plugin_version\";s:6:\"2.19.0\";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:18:\"lantern-realty.com\";s:9:\"server_ip\";s:12:\"172.72.70.83\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1588345947;s:7:\"version\";s:6:\"2.19.0\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1588345959;s:7:\"version\";s:6:\"2.19.0\";}s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:2:\"14\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:0;}}s:17:\"content-protector\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:39:\"content-protector/content-protector.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1602794971;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:5:\"2.4.2\";s:11:\"sdk_version\";s:5:\"2.4.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:7:\"3.5.5.1\";s:14:\"plugin_version\";s:7:\"3.5.5.2\";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:18:\"lantern-realty.com\";s:9:\"server_ip\";s:13:\"161.69.112.11\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1602794971;s:7:\"version\";s:5:\"3.3.8\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1602794984;s:7:\"version\";s:5:\"3.3.8\";}s:21:\"trial_promotion_shown\";i:1618359079;}s:27:\"bulk-edit-posts-on-frontend\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:47:\"bulk-edit-posts-on-frontend/frontend-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1603035877;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";s:7:\"2.4.0.1\";s:11:\"sdk_version\";s:5:\"2.3.1\";s:16:\"sdk_upgrade_mode\";b:0;s:18:\"sdk_downgrade_mode\";b:1;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"2.3.2\";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:18:\"lantern-realty.com\";s:9:\"server_ip\";s:12:\"172.72.70.83\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1603035877;s:7:\"version\";s:5:\"2.3.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1603035890;s:7:\"version\";s:5:\"2.3.2\";}}}s:13:\"file_slug_map\";a:3:{s:79:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/wp-sheet-editor.php\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:39:\"content-protector/content-protector.php\";s:17:\"content-protector\";s:47:\"bulk-edit-posts-on-frontend/frontend-editor.php\";s:27:\"bulk-edit-posts-on-frontend\";}s:7:\"plugins\";a:3:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:15:\"WP Sheet Editor\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:12:\"premium_slug\";s:23:\"wp-sheet-editor-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:79:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/wp-sheet-editor.php\";s:7:\"version\";s:6:\"2.19.0\";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_ec1c7da603c0772f1bfe276efb715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1010\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:17:\"content-protector\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:8:\"Passster\";s:4:\"slug\";s:17:\"content-protector\";s:12:\"premium_slug\";s:25:\"content-protector-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:39:\"content-protector/content-protector.php\";s:7:\"version\";s:7:\"3.5.5.2\";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_9d9d6d17bd34372b199f36e37dd4b\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1938\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}s:27:\"bulk-edit-posts-on-frontend\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:42:\"WP Sheet Editor - Editable Frontend Tables\";s:4:\"slug\";s:27:\"bulk-edit-posts-on-frontend\";s:12:\"premium_slug\";s:35:\"bulk-edit-posts-on-frontend-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:47:\"bulk-edit-posts-on-frontend/frontend-editor.php\";s:7:\"version\";s:5:\"2.3.2\";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_5c389ae3fec7d724350dcbdd315ed\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1021\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"39a32c68c875e563a1bce8c3380b7320\";s:13:\"admin_notices\";a:3:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:0:{}s:17:\"content-protector\";a:1:{s:15:\"trial_promotion\";a:8:{s:7:\"message\";s:376:\"Hey! How do you like <b>Passster</b> so far? Test all our awesome premium features with a 7-day free trial. No credit card required!  <a style=\"margin-left: 10px; vertical-align: super;\" href=\"https://lantern-realty.com/wp-admin/admin.php?billing_cycle=annual&trial=true&page=passster-pricing\"><button class=\"button button-primary\">Start free trial &nbsp;&#10140;</button></a>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:9:\"promotion\";s:6:\"sticky\";b:1;s:2:\"id\";s:15:\"trial_promotion\";s:10:\"manager_id\";s:17:\"content-protector\";s:6:\"plugin\";s:8:\"Passster\";s:10:\"wp_user_id\";N;}}s:27:\"bulk-edit-posts-on-frontend\";a:0:{}}}','yes'),(141062,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(141063,'fs_api_cache','a:0:{}','no'),(141070,'vgse_user_path','a:1:{i:1;a:14:{i:0;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:21:\"vg_sheet_editor_setup\";s:10:\"eventValue\";s:14:\"20200501151229\";s:8:\"vgStatus\";i:0;}i:1;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:21:\"vg_sheet_editor_setup\";s:10:\"eventValue\";s:14:\"20200501151230\";s:8:\"vgStatus\";i:0;}i:2;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:21:\"vg_sheet_editor_setup\";s:10:\"eventValue\";s:14:\"20200501151240\";s:8:\"vgStatus\";i:0;}i:3;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:21:\"vg_sheet_editor_setup\";s:10:\"eventValue\";s:14:\"20200501151241\";s:8:\"vgStatus\";i:0;}i:4;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:28:\"vgse_save_post_types_setting\";s:10:\"eventValue\";s:14:\"20200501151255\";s:8:\"vgStatus\";i:0;}i:5;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"open\";s:10:\"eventLabel\";s:27:\"vgse-bulk-edit-houzez_agent\";s:10:\"eventValue\";s:14:\"20200501151316\";s:8:\"vgStatus\";i:0;}i:6;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:14:\"vgse_load_data\";s:10:\"eventValue\";s:14:\"20200501151318\";s:8:\"vgStatus\";i:0;}i:7;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151412\";s:8:\"vgStatus\";i:0;}i:8;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151416\";s:8:\"vgStatus\";i:0;}i:9;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151419\";s:8:\"vgStatus\";i:0;}i:10;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151422\";s:8:\"vgStatus\";i:0;}i:11;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:30:\"vgse_update_columns_visibility\";s:10:\"eventValue\";s:14:\"20200501151426\";s:8:\"vgStatus\";i:0;}i:12;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:27:\"vgse_insert_individual_post\";s:10:\"eventValue\";s:14:\"20200501151504\";s:8:\"vgStatus\";i:0;}i:13;a:6:{s:7:\"hitType\";s:5:\"event\";s:13:\"eventCategory\";s:25:\"Free - lantern-realty.com\";s:11:\"eventAction\";s:4:\"ajax\";s:10:\"eventLabel\";s:17:\"vgse_set_settings\";s:10:\"eventValue\";s:14:\"20200501151545\";s:8:\"vgStatus\";i:0;}}}','yes'),(141066,'vg_sheet_editor','a:32:{s:8:\"last_tab\";N;s:13:\"be_post_types\";a:1:{i:0;s:12:\"houzez_agent\";}s:17:\"be_posts_per_page\";s:2:\"20\";s:23:\"be_load_items_on_scroll\";i:1;s:20:\"be_fix_first_columns\";i:1;s:22:\"be_posts_per_page_save\";s:1:\"4\";s:26:\"be_timeout_between_batches\";s:1:\"6\";s:23:\"be_disable_post_actions\";i:0;s:16:\"export_page_size\";s:3:\"100\";s:17:\"enable_pagination\";b:0;s:33:\"be_disable_automatic_loading_rows\";b:0;s:30:\"be_disable_full_screen_mode_on\";s:1:\"1\";s:16:\"be_columns_limit\";s:3:\"310\";s:27:\"be_taxonomy_terms_separator\";s:1:\",\";s:36:\"be_suspend_object_cache_invalidation\";b:1;s:18:\"be_disable_wpautop\";b:0;s:24:\"be_disable_data_prefetch\";b:0;s:37:\"enable_spreadsheet_views_restrictions\";b:0;s:18:\"enable_simple_mode\";b:0;s:38:\"disable_automatic_formatting_detection\";b:0;s:29:\"be_disable_cells_lazy_loading\";b:0;s:27:\"be_disable_dashboard_widget\";b:0;s:29:\"be_disable_serialized_columns\";b:0;s:20:\"be_disable_heartbeat\";b:0;s:16:\"be_rest_api_only\";b:0;s:29:\"be_enable_fancy_taxonomy_cell\";b:0;s:18:\"be_enable_rest_api\";b:0;s:24:\"show_all_custom_statuses\";b:0;s:18:\"hide_cell_comments\";b:0;s:32:\"manage_taxonomy_columns_term_ids\";b:0;s:22:\"be_initial_rows_offset\";i:0;s:39:\"delete_attached_images_when_post_delete\";b:0;}','yes'),(141067,'vgse_can_edit_cpt_free','1','yes'),(141071,'vgse_columns_visibility','a:1:{s:12:\"houzez_agent\";a:2:{s:7:\"enabled\";a:21:{s:10:\"post_title\";s:5:\"Title\";s:12:\"post_content\";s:7:\"Content\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:11:\"post_status\";s:6:\"Status\";s:10:\"menu_order\";s:5:\"Order\";s:14:\"agent_category\";s:10:\"Categories\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:28:\"_primary_term_agent_category\";s:27:\"Primary Term Agent Category\";s:17:\"_vc_post_settings\";s:16:\"Vc Post Settings\";s:19:\"fave_agent_agencies\";s:19:\"Fave Agent Agencies\";s:18:\"fave_agent_company\";s:18:\"Fave Agent Company\";s:14:\"fave_agent_des\";s:14:\"Fave Agent Des\";s:16:\"fave_agent_email\";s:16:\"Fave Agent Email\";s:19:\"fave_agent_facebook\";s:19:\"Fave Agent Facebook\";s:18:\"fave_agent_license\";s:18:\"Fave Agent License\";s:15:\"fave_agent_logo\";s:15:\"Fave Agent Logo\";s:17:\"fave_agent_mobile\";s:17:\"Fave Agent Mobile\";s:19:\"fave_agent_position\";s:19:\"Fave Agent Position\";s:18:\"fave_agent_website\";s:18:\"Fave Agent Website\";s:14:\"slide_template\";s:14:\"Slide Template\";}s:8:\"disabled\";a:7:{s:2:\"ID\";s:2:\"ID\";s:9:\"post_name\";s:8:\"URL Slug\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:11:\"post_parent\";s:11:\"Page Parent\";s:10:\"agent_city\";s:6:\"Cities\";s:9:\"post_type\";s:9:\"Post type\";}}}','yes'),(141072,'vgse_columns_visibility_migrated','1','yes'),(141073,'vg_sheet_editor-transients','a:3:{s:14:\"changed_values\";a:1:{s:30:\"be_disable_full_screen_mode_on\";b:0;}s:9:\"last_save\";i:1588346146;s:14:\"last_save_mode\";s:6:\"normal\";}','yes'),(141074,'vgse_welcome_redirect','no','yes'),(141075,'vgse_hide_whats_new_2.18.1.5','yes','yes'),(141076,'vgse_disable_quick_setup','1','yes'),(141081,'vgse_hide_extensions_popup','1','yes'),(141086,'vgse_editions_counter','1','yes'),(141087,'vgse_processed_counter','1','yes'),(361603,'tablepress_plugin_options','{\"plugin_options_db_version\":43,\"table_scheme_db_version\":3,\"prev_tablepress_version\":\"1.13\",\"tablepress_version\":\"1.14\",\"first_activation\":1603037703,\"message_plugin_update\":true,\"message_donation_nag\":true,\"use_custom_css\":true,\"use_custom_css_file\":true,\"custom_css\":\"\",\"custom_css_minified\":\"\",\"custom_css_version\":0}','yes'),(364029,'ure_tasks_queue','a:0:{}','yes'),(361606,'tablepress_tables','{\"last_id\":5,\"table_post\":{\"offices\":1206,\"team\":1199}}','yes'),(361542,'widget_lpwtoc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(361543,'lwptoc_rate_time','1603122877','yes'),(361557,'lwptoc_processingHeadings','a:1:{s:9:\"postTypes\";a:1:{i:0;s:12:\"houzez_agent\";}}','yes'),(360993,'_transient_e9332cec6_elements','a:0:{}','yes'),(360994,'_transient_e9332cec6_custom_js','','yes'),(360995,'_transient_e9332cec6_updated_at','1603149173','yes'),(392559,'_transient_93b3ce2f5_elements','a:0:{}','yes'),(392560,'_transient_93b3ce2f5_custom_js','','yes'),(392561,'_transient_93b3ce2f5_updated_at','1605059632','yes'),(392565,'_transient_4781052f4_elements','a:0:{}','yes'),(392566,'_transient_4781052f4_custom_js','','yes'),(392567,'_transient_4781052f4_updated_at','1605059632','yes'),(392821,'_transient_a3f114b53_custom_js','','yes'),(392822,'_transient_a3f114b53_updated_at','1605059632','yes'),(1251201,'9583082da_eael_updated_at','1656030088','no'),(1252124,'a8b7c0f29_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(419978,'1dcb97ea3_elements','a:0:{}','yes'),(419979,'1dcb97ea3_custom_js','','yes'),(419980,'1dcb97ea3_updated_at','1606787969','yes'),(352369,'jetpack_callables_sync_checksum','a:35:{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:2311601899;s:26:\"main_network_site_wpcom_id\";i:4282793338;s:8:\"site_url\";i:2311601899;s:8:\"home_url\";i:2311601899;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2903718415;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:2852872489;s:10:\"post_types\";i:3015456133;s:18:\"post_type_features\";i:1004367947;s:10:\"shortcodes\";i:3860646731;s:27:\"rest_api_allowed_post_types\";i:2990871343;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:10:\"wp_version\";i:152294815;s:11:\"get_plugins\";i:1967151545;s:24:\"get_plugins_action_links\";i:1145099015;s:14:\"active_modules\";i:23232160;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:1412896360;s:5:\"roles\";i:4092342287;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:2299092051;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;s:13:\"theme_support\";i:2416712208;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;}','no'),(173645,'elementor_version','3.2.2','yes'),(173647,'houzez_20_db_updated','1','yes'),(173648,'_elementor_installed_time','1590774980','yes'),(173649,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{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:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}}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:9:\"templates\";a:822:{i:0;a:16:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?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:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?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:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?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:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?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:37:\"[\"Ecommerce\",\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?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:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?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:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?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:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?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:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-masterclass/?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:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-music-concert/?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:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?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:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-cta-clothing-shop-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:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?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:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-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:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?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:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?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:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?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:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-contact-business-consulting/?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:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-contact-handyman/?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:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?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:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?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:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?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:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?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:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?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:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-booking-life-coach/?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:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?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:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?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:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?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:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?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:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-sports-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:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?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:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?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:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?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:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?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:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?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:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?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:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?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:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?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:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-contact-drone/?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:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-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:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?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:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?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:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/full-screen-verification-winery/?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:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?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:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscription-app-saas/?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:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?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:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?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:30:\"[\"Blog\",\"Fashion\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?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:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?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:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?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:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?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:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?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:29:\"[\"subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/classic-cta-music-band/?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:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-computer-technician/?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:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-delivery-company/?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:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-discount-eco-shop/?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:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?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:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?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:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?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:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?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:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?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:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?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:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?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:24:\"[\"Discount\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?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:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/baby-sleep-consultant/?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:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?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:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?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:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?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:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?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:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?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:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?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:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?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:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?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:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?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:34:\"[\"Blog\",\"Photography\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?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:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-english-pub/?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:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-menu-singer/?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:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-subscription-singer/?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:21:\"[\"Music\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?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:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?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:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?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:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-personal-chef/?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:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?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:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?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:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-black-friday/?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:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?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:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?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:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-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:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-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:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-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:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-halloween-1/?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:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-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:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-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:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-discount-halloween-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:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-halloween-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:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?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:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-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:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-cta-christmas-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:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-christmas-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:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-christmas-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:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-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:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-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:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-cta-valentines-day-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:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?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:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?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:25:\"[\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?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:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-cta-mochi-shop-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:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?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:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-login-tech-company/?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:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?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:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{s:4:\"tmpl\";i:883;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?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:20:\"[\"Blog\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/fly-in-login-health-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:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?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:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{s:4:\"tmpl\";i:893;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{s:4:\"tmpl\";i:899;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:16:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/lp/dot-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{s:4:\"tmpl\";i:923;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{s:4:\"tmpl\";i:924;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{s:4:\"tmpl\";i:925;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/wireframe-courses-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:134;a:16:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:140;a:16:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?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:41:\"[\"Ecommerce\",\"online shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{s:4:\"tmpl\";i:951;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{s:4:\"tmpl\";i:952;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{s:4:\"tmpl\";i:958;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:16:{s:4:\"tmpl\";i:981;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:991;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:55:\"Fly-In | Team Details Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?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\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{s:4:\"tmpl\";i:992;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:993;s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:150;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:52:\"Full Screen | Menu Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?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:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:151;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:51:\"Classic | Discount Popup | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-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:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:50:\"Hello Bar | CTA Popup | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?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:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:45:\"Classic | Discount Popup | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?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:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:51:\"Bottom Bar | Discount Popup | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?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:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:38:\"Hello Bar | Menu Popup | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?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:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:43:\"Full Screen | Booking Popup | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?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:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:40:\"Classic | Discount Popup | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?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:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:40:\"Slide-In | Contact Popup | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?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:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?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:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:35:\"Classic | Cta Popup | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-popup-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:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:46:\"Bottom Bar | Contact Popup | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?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:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:38:\"Fly-In | Contact Popup | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?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:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:37:\"Classic |  Login Popup | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?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:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:42:\"Full Screen | Login Popup | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?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:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:34:\"Classic | Login Popup | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-login-popup-login-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:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:37:\"Classic | Login Popup | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?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:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:46:\"Classic |  Login Popup | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?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:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:16:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:42:\"Fly-In | Contact Popup | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?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:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:42:\"Fly-In | Cta Popup | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?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:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:43:\"Full Screen | Contact Popup | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?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:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:45:\"Classic | Contact | Support  Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?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:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-contact-small-business/?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:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-online-shop/?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:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?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:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-open-week/?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:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:16:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?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:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:181;a:16:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:183;a:16:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:16:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:16:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/nails-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:186;a:16:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/music-festival-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:187;a:16:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:16:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:16:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:16:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:16:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:192;a:16:{s:4:\"tmpl\";i:674;s:2:\"id\";i: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\";i: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\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:195;a:16:{s:4:\"tmpl\";i:675;s:2:\"id\";i: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\";i: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\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:197;a:16:{s:4:\"tmpl\";i:875;s:2:\"id\";i: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\";i: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\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:16:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-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:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:199;a:16:{s:4:\"tmpl\";i:672;s:2:\"id\";i: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\";i: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\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:201;a:16:{s:4:\"tmpl\";i:671;s:2:\"id\";i: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\";i: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\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:203;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:204;a:16:{s:4:\"tmpl\";i:676;s:2:\"id\";i: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\";i: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\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:206;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/law-firm-services-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:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:207;a:16:{s:4:\"tmpl\";i:668;s:2:\"id\";i: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\";i: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\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:209;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photographer-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:43:\"[\"Black and white\",\"Photography\",\"project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:210;a:16:{s:4:\"tmpl\";i:669;s:2:\"id\";i: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\";i: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\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"online shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:212;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photographer-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:44:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:213;a:16:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:673;s:2:\"id\";i: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\";i: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\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:216;a:16:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:16:{s:4:\"tmpl\";i:670;s:2:\"id\";i: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\";i: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\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"interior design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:219;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:220;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/online-training-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:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:16:{s:4:\"tmpl\";i:502;s:2:\"id\";i: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\";i: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\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:222;a:16:{s:4:\"tmpl\";i:557;s:2:\"id\";i: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\";i: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\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:16:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:225;a:16:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"online shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:227;a:16:{s:4:\"tmpl\";i:497;s:2:\"id\";i: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\";i: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\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:228;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:229;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/spa-beauty-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:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:16:{s:4:\"tmpl\";i:498;s:2:\"id\";i: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\";i: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\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:232;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/insurance-company-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:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:500;s:2:\"id\";i: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\";i: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\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:234;a:16:{s:4:\"tmpl\";i:513;s:2:\"id\";i: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\";i: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\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:235;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:236;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/contact-plants-store/?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:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:16:{s:4:\"tmpl\";i:512;s:2:\"id\";i: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\";i: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\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:239;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dental-care-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:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:241;a:16:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-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:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:16:{s:4:\"tmpl\";i:501;s:2:\"id\";i: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\";i: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\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:244;a:16:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:16:{s:4:\"tmpl\";i:505;s:2:\"id\";i: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\";i: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\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:246;a:16:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:247;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:16:{s:4:\"tmpl\";i:510;s:2:\"id\";i: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\";i: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\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:249;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/conference-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:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:16:{s:4:\"tmpl\";i:511;s:2:\"id\";i: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\";i: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\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:252;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/travel-agency-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:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:16:{s:4:\"tmpl\";i:506;s:2:\"id\";i: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\";i: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\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/architecture-photography-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:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:257;a:16:{s:4:\"tmpl\";i:504;s:2:\"id\";i: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\";i: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\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/3d-designer-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:69:\"[\"3D\",\"creative portfolio\",\"Design\",\"Designer\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:16:{s:4:\"tmpl\";i:499;s:2:\"id\";i: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\";i: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\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/architecture-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:70:\"[\"Architecture\",\"Creative\",\"creative portfolio\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:263;a:16:{s:4:\"tmpl\";i:503;s:2:\"id\";i: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\";i: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\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:264;a:16:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/fashion-shop-coming-soon/?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:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:16:{s:4:\"tmpl\";i:507;s:2:\"id\";i: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\";i: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\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:267;a:16:{s:4:\"tmpl\";i:545;s:2:\"id\";i: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\";i: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\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:268;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:16:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:270;a:16:{s:4:\"tmpl\";i:546;s:2:\"id\";i: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\";i: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\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:16:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:273;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:16:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:275;a:16:{s:4:\"tmpl\";i:508;s:2:\"id\";i: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\";i: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\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:276;a:16:{s:4:\"tmpl\";i:556;s:2:\"id\";i: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\";i: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\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:16:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/tech-company-coming-soon/?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:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/packing-moving-company-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:28:\"[\"Movers\",\"moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:16:{s:4:\"tmpl\";i:509;s:2:\"id\";i: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\";i: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\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:282;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:283;a:16:{s:4:\"tmpl\";i:684;s:2:\"id\";i: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\";i: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\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:284;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/interior-design-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:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:16:{s:4:\"tmpl\";i:685;s:2:\"id\";i: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\";i: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\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:16:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/design-blog-coming-soon/?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:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:288;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:16:{s:4:\"tmpl\";i:686;s:2:\"id\";i: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\";i: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\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/hotel-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:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:291;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:16:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-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:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:16:{s:4:\"tmpl\";i:687;s:2:\"id\";i: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\";i: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\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:16:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:688;s:2:\"id\";i: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\";i: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\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:16:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:16:{s:4:\"tmpl\";i:689;s:2:\"id\";i: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\";i: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\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:16:{s:4:\"tmpl\";i:690;s:2:\"id\";i: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\";i: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\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{s:4:\"tmpl\";i:691;s:2:\"id\";i: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\";i: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\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:16:{s:4:\"tmpl\";i:692;s:2:\"id\";i: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\";i: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\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/restaurant-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:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/interior-designer-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:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-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:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:313;a:16:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/fashion-store-coming-soon/?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:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:316;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/exhibition-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:74:\"[\"Art\",\"Creative\",\"creative portfolio\",\"Exhibition\",\"Gallery\",\"portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-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:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:319;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/travel-blogger-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:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-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:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:322;a:16:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/ceramics-shop-coming-soon/?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:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-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:29:\"[\"404\",\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-maintenance-mode/?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:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-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:32:\"[\"Beauty salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/eco-shop-maintenance-mode/?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:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-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:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/food-blog-coming-soon/?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:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:641;s:2:\"id\";i: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\";i: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\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:16:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/mobile-app-maintenance-mode/?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:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/perfume-shop-coming-soon/?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:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:484;s:2:\"id\";i: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\";i: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\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:487;s:2:\"id\";i: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\";i: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\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{s:4:\"tmpl\";i:491;s:2:\"id\";i: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\";i: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\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:16:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:16:{s:4:\"tmpl\";i:488;s:2:\"id\";i: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\";i: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\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/vase-shop-coming-soon/?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:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{s:4:\"tmpl\";i:490;s:2:\"id\";i: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\";i: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\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:16:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/art-magazine-coming-soon/?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:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:352;a:16:{s:4:\"tmpl\";i:496;s:2:\"id\";i: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\";i: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\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:353;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/business-consulting-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:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:16:{s:4:\"tmpl\";i:486;s:2:\"id\";i: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\";i: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\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/construction-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:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:495;s:2:\"id\";i: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\";i: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\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:359;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/creative-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:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{s:4:\"tmpl\";i:493;s:2:\"id\";i: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\";i: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\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:362;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:16:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/doctors-online-consultation-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:35:\"[\"App\",\"Health\",\"medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:16:{s:4:\"tmpl\";i:485;s:2:\"id\";i: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\";i: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\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:482;s:2:\"id\";i: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\";i: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\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:367;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:16:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/design-school-coming-soon/?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:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{s:4:\"tmpl\";i:483;s:2:\"id\";i: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\";i: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\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:16:{s:4:\"tmpl\";i:492;s:2:\"id\";i: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\";i: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\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:16:{s:4:\"tmpl\";i:489;s:2:\"id\";i: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\";i: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\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:16:{s:4:\"tmpl\";i:494;s:2:\"id\";i: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\";i: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\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:376;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{s:4:\"tmpl\";i:425;s:2:\"id\";i: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\";i: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\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:16:{s:4:\"tmpl\";i:423;s:2:\"id\";i: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\";i: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\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:16:{s:4:\"tmpl\";i:534;s:2:\"id\";i: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\";i: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\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/birthday-party-invitation/?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:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{s:4:\"tmpl\";i:535;s:2:\"id\";i: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\";i: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\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:386;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:16:{s:4:\"tmpl\";i:430;s:2:\"id\";i: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\";i: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\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:16:{s:4:\"tmpl\";i:476;s:2:\"id\";i: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\";i: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\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{s:4:\"tmpl\";i:478;s:2:\"id\";i: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\";i: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\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:397;a:16:{s:4:\"tmpl\";i:481;s:2:\"id\";i: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\";i: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\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:532;s:2:\"id\";i: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\";i: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\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{s:4:\"tmpl\";i:422;s:2:\"id\";i: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\";i: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\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:404;a:16:{s:4:\"tmpl\";i:533;s:2:\"id\";i: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\";i: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\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-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:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:409;a:16:{s:4:\"tmpl\";i:424;s:2:\"id\";i: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\";i: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\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:410;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-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:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:412;a:16:{s:4:\"tmpl\";i:426;s:2:\"id\";i: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\";i: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\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:413;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-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:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:16:{s:4:\"tmpl\";i:432;s:2:\"id\";i: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\";i: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\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:416;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?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:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:16:{s:4:\"tmpl\";i:427;s:2:\"id\";i: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\";i: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\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:419;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-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:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:16:{s:4:\"tmpl\";i:429;s:2:\"id\";i: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\";i: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\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-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:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:16:{s:4:\"tmpl\";i:431;s:2:\"id\";i: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\";i: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\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-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:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:16:{s:4:\"tmpl\";i:428;s:2:\"id\";i: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\";i: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\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-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:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:16:{s:4:\"tmpl\";i:613;s:2:\"id\";i: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\";i: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\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{s:4:\"tmpl\";i:634;s:2:\"id\";i: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\";i: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\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:16:{s:4:\"tmpl\";i:633;s:2:\"id\";i: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\";i: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\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{s:4:\"tmpl\";i:632;s:2:\"id\";i: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\";i: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\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{s:4:\"tmpl\";i:618;s:2:\"id\";i: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\";i: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\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:16:{s:4:\"tmpl\";i:574;s:2:\"id\";i: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\";i: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\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:440;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:16:{s:4:\"tmpl\";i:628;s:2:\"id\";i: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\";i: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\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:16:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/finance-learning-platform-under-construction/?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:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:16:{s:4:\"tmpl\";i:627;s:2:\"id\";i: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\";i: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\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:444;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:16:{s:4:\"tmpl\";i:625;s:2:\"id\";i: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\";i: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\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:446;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:16:{s:4:\"tmpl\";i:626;s:2:\"id\";i: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\";i: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\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:16:{s:4:\"tmpl\";i:611;s:2:\"id\";i: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\";i: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\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:16:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/home-decor-store-coming-soon/?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:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:16:{s:4:\"tmpl\";i:614;s:2:\"id\";i: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\";i: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\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-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:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:629;s:2:\"id\";i: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\";i: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\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-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:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{s:4:\"tmpl\";i:619;s:2:\"id\";i: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\";i: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\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-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:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:16:{s:4:\"tmpl\";i:620;s:2:\"id\";i: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\";i: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\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-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:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/online-store-under-construction/?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:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:16:{s:4:\"tmpl\";i:615;s:2:\"id\";i: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\";i: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\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:460;a:16:{s:4:\"tmpl\";i:630;s:2:\"id\";i: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\";i: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\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:16:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/travel-agency-under-construction/?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:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:16:{s:4:\"tmpl\";i:631;s:2:\"id\";i: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\";i: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\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:464;a:16:{s:4:\"tmpl\";i:473;s:2:\"id\";i: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\";i: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\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:16:{s:4:\"tmpl\";i:623;s:2:\"id\";i: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\";i: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\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:467;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{s:4:\"tmpl\";i:474;s:2:\"id\";i: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\";i: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\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{s:4:\"tmpl\";i:475;s:2:\"id\";i: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\";i: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\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{s:4:\"tmpl\";i:480;s:2:\"id\";i: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\";i: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\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?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\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{s:4:\"tmpl\";i:612;s:2:\"id\";i: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\";i: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\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:475;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?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\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{s:4:\"tmpl\";i:536;s:2:\"id\";i: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\";i: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\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{s:4:\"tmpl\";i:624;s:2:\"id\";i: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\";i: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\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{s:4:\"tmpl\";i:616;s:2:\"id\";i: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\";i: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\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{s:4:\"tmpl\";i:617;s:2:\"id\";i: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\";i: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\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:483;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{s:4:\"tmpl\";i:514;s:2:\"id\";i: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\";i: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\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:485;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:16:{s:4:\"tmpl\";i:622;s:2:\"id\";i: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\";i: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\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:487;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i: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\";i: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\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:16:{s:4:\"tmpl\";i:621;s:2:\"id\";i: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\";i: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\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:489;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i: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\";i: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\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-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:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i: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\";i: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\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-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:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i: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\";i: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\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-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:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i: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\";i: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\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:16:{s:4:\"tmpl\";i:874;s:2:\"id\";i: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\";i: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\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i: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\";i: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\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i: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\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i: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\";i: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\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:16:{s:4:\"tmpl\";i:872;s:2:\"id\";i: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\";i: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\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i: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\";i: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\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:16:{s:4:\"tmpl\";i:871;s:2:\"id\";i: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\";i: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\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i: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\";i: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\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{s:4:\"tmpl\";i:870;s:2:\"id\";i: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\";i: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\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i: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\";i: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\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{s:4:\"tmpl\";i:520;s:2:\"id\";i: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\";i: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\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i: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\";i: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\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:523;s:2:\"id\";i: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\";i: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\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:509;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i: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\";i: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\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:16:{s:4:\"tmpl\";i:524;s:2:\"id\";i: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\";i: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\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i: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\";i: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\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{s:4:\"tmpl\";i:519;s:2:\"id\";i: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\";i: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\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i: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\";i: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\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:16:{s:4:\"tmpl\";i:521;s:2:\"id\";i: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\";i: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\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i: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\";i: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\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{s:4:\"tmpl\";i:522;s:2:\"id\";i: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\";i: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\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i: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\";i: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\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:16:{s:4:\"tmpl\";i:525;s:2:\"id\";i: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\";i: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\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i: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\";i: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\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{s:4:\"tmpl\";i:526;s:2:\"id\";i: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\";i: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\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i: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\";i: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\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{s:4:\"tmpl\";i:517;s:2:\"id\";i: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\";i: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\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i: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\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:16:{s:4:\"tmpl\";i:518;s:2:\"id\";i: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\";i: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\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i: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\";i: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\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:16:{s:4:\"tmpl\";i:548;s:2:\"id\";i: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\";i: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\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i: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\";i: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\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:16:{s:4:\"tmpl\";i:542;s:2:\"id\";i: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\";i: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\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i: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\";i: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\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:16:{s:4:\"tmpl\";i:547;s:2:\"id\";i: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\";i: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\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i: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\";i: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\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:16:{s:4:\"tmpl\";i:566;s:2:\"id\";i: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\";i: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\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:533;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i: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\";i: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\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:16:{s:4:\"tmpl\";i:567;s:2:\"id\";i: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\";i: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\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i: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\";i: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\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:16:{s:4:\"tmpl\";i:541;s:2:\"id\";i: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\";i: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\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i: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\";i: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\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:538;a:16:{s:4:\"tmpl\";i:540;s:2:\"id\";i: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\";i: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\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i: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\";i: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\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:540;a:16:{s:4:\"tmpl\";i:516;s:2:\"id\";i: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\";i: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\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i: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\";i: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\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:542;a:16:{s:4:\"tmpl\";i:515;s:2:\"id\";i: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\";i: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\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:543;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i: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\";i: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\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:16:{s:4:\"tmpl\";i:539;s:2:\"id\";i: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\";i: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\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:545;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i: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\";i: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\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:16:{s:4:\"tmpl\";i:565;s:2:\"id\";i: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\";i: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\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:547;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i: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\";i: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\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:16:{s:4:\"tmpl\";i:564;s:2:\"id\";i: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\";i: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\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:549;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i: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\";i: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\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-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:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i: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\";i: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\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-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:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-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:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i: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\";i: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\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i: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\";i: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\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i: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\";i: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\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:651;s:2:\"id\";i: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\";i: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\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i: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\";i: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\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:647;s:2:\"id\";i: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\";i: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\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:646;s:2:\"id\";i: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\";i: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\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:645;s:2:\"id\";i: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\";i: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\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i: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\";i: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\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:644;s:2:\"id\";i: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\";i: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\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i: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\";i: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\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{s:4:\"tmpl\";i:643;s:2:\"id\";i: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\";i: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\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i: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\";i: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\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i: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\";i: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\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{s:4:\"tmpl\";i:693;s:2:\"id\";i: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\";i: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\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i: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\";i: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\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:652;s:2:\"id\";i: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\";i: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\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{s:4:\"tmpl\";i:653;s:2:\"id\";i: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\";i: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\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:654;s:2:\"id\";i: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\";i: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\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i: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\";i: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\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:16:{s:4:\"tmpl\";i:655;s:2:\"id\";i: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\";i: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\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i: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\";i: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\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i: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\";i: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\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{s:4:\"tmpl\";i:656;s:2:\"id\";i: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\";i: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\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i: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\";i: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\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{s:4:\"tmpl\";i:650;s:2:\"id\";i: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\";i: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\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i: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\";i: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\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{s:4:\"tmpl\";i:649;s:2:\"id\";i: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\";i: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\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:16:{s:4:\"tmpl\";i:648;s:2:\"id\";i: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\";i: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\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i: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\";i: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\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i: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\";i: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\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i: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\";i: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\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i: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\";i: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\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i: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\";i: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\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{s:4:\"tmpl\";i:642;s:2:\"id\";i: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\";i: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\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{s:4:\"tmpl\";i:637;s:2:\"id\";i: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\";i: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\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i: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\";i: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\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{s:4:\"tmpl\";i:638;s:2:\"id\";i: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\";i: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\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:16:{s:4:\"tmpl\";i:888;s:2:\"id\";i: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\";i: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\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:16:{s:4:\"tmpl\";i:887;s:2:\"id\";i: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\";i: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\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:16:{s:4:\"tmpl\";i:886;s:2:\"id\";i: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\";i: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\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:16:{s:4:\"tmpl\";i:885;s:2:\"id\";i: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\";i: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\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i: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\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{s:4:\"tmpl\";i:635;s:2:\"id\";i: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\";i: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\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:663;s:2:\"id\";i: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\";i: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\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{s:4:\"tmpl\";i:658;s:2:\"id\";i: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\";i: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\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:16:{s:4:\"tmpl\";i:657;s:2:\"id\";i: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\";i: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\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{s:4:\"tmpl\";i:694;s:2:\"id\";i: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\";i: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\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{s:4:\"tmpl\";i:636;s:2:\"id\";i: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\";i: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\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:16:{s:4:\"tmpl\";i:665;s:2:\"id\";i: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\";i: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\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{s:4:\"tmpl\";i:659;s:2:\"id\";i: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\";i: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\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{s:4:\"tmpl\";i:660;s:2:\"id\";i: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\";i: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\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:666;s:2:\"id\";i: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\";i: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\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{s:4:\"tmpl\";i:664;s:2:\"id\";i: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\";i: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\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:661;s:2:\"id\";i: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\";i: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\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{s:4:\"tmpl\";i:662;s:2:\"id\";i: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\";i: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\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{s:4:\"tmpl\";i:572;s:2:\"id\";i: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\";i: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\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:613;a:16:{s:4:\"tmpl\";i:528;s:2:\"id\";i: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\";i: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\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{s:4:\"tmpl\";i:527;s:2:\"id\";i: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\";i: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\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:615;a:16:{s:4:\"tmpl\";i:479;s:2:\"id\";i: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\";i: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\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{s:4:\"tmpl\";i:573;s:2:\"id\";i: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\";i: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\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{s:4:\"tmpl\";i:569;s:2:\"id\";i: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\";i: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\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:618;a:16:{s:4:\"tmpl\";i:571;s:2:\"id\";i: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\";i: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\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{s:4:\"tmpl\";i:570;s:2:\"id\";i: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\";i: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\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:620;a:16:{s:4:\"tmpl\";i:568;s:2:\"id\";i: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\";i: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\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:16:{s:4:\"tmpl\";i:530;s:2:\"id\";i: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\";i: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:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:622;a:16:{s:4:\"tmpl\";i:531;s:2:\"id\";i: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\";i: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\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:16:{s:4:\"tmpl\";i:529;s:2:\"id\";i: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\";i: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\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i: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\";i: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\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i: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\";i: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\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i: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\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i: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\";i: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\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i: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\";i: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\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i: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\";i: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\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?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:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-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:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-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:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i: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\";i: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\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i: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\";i: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\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i: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\";i: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\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i: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\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i: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\";i: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\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i: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\";i: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\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?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:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-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:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-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:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-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:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-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:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-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:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i: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\";i: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\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i: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\";i: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\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i: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\";i: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\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i: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\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i: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\";i: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\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i: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\";i: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\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i: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\";i: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\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i: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\";i: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\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i: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\";i: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\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{s:4:\"tmpl\";i:948;s:2:\"id\";i: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\";i: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\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i: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\";i: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\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i: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\";i: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\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i: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\";i: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\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i: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\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i: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\";i: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\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i: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\";i: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\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i: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\";i: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\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i: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\";i: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\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i: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\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i: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\";i: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\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:901;s:2:\"id\";i: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\";i: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\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:900;s:2:\"id\";i: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\";i: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\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{s:4:\"tmpl\";i:898;s:2:\"id\";i: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\";i: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\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{s:4:\"tmpl\";i:897;s:2:\"id\";i: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\";i: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\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i: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\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i: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\";i: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\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i: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\";i: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\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i: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\";i: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\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i: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\";i: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\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{s:4:\"tmpl\";i:597;s:2:\"id\";i: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\";i: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\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:675;a:16:{s:4:\"tmpl\";i:609;s:2:\"id\";i: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\";i: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\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{s:4:\"tmpl\";i:598;s:2:\"id\";i: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\";i: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\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{s:4:\"tmpl\";i:599;s:2:\"id\";i: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\";i: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\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{s:4:\"tmpl\";i:600;s:2:\"id\";i: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\";i: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\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:16:{s:4:\"tmpl\";i:601;s:2:\"id\";i: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\";i: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\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:603;s:2:\"id\";i: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\";i: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\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:681;a:16:{s:4:\"tmpl\";i:604;s:2:\"id\";i: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\";i: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\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:16:{s:4:\"tmpl\";i:606;s:2:\"id\";i: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\";i: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\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:16:{s:4:\"tmpl\";i:608;s:2:\"id\";i: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\";i: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\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:16:{s:4:\"tmpl\";i:610;s:2:\"id\";i: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\";i: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\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:16:{s:4:\"tmpl\";i:468;s:2:\"id\";i: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\";i: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\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:16:{s:4:\"tmpl\";i:602;s:2:\"id\";i: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\";i: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\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:16:{s:4:\"tmpl\";i:605;s:2:\"id\";i: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\";i: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\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:688;a:16:{s:4:\"tmpl\";i:607;s:2:\"id\";i: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\";i: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\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:16:{s:4:\"tmpl\";i:596;s:2:\"id\";i: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\";i: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\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:16:{s:4:\"tmpl\";i:434;s:2:\"id\";i: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\";i: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\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:16:{s:4:\"tmpl\";i:439;s:2:\"id\";i: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\";i: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\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:16:{s:4:\"tmpl\";i:441;s:2:\"id\";i: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\";i: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\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:16:{s:4:\"tmpl\";i:442;s:2:\"id\";i: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\";i: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\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:16:{s:4:\"tmpl\";i:444;s:2:\"id\";i: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\";i: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\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:16:{s:4:\"tmpl\";i:446;s:2:\"id\";i: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\";i: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\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:16:{s:4:\"tmpl\";i:436;s:2:\"id\";i: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\";i: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\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:16:{s:4:\"tmpl\";i:438;s:2:\"id\";i: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\";i: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\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:16:{s:4:\"tmpl\";i:440;s:2:\"id\";i: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\";i: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\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:16:{s:4:\"tmpl\";i:443;s:2:\"id\";i: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\";i: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\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:16:{s:4:\"tmpl\";i:445;s:2:\"id\";i: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\";i: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\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:16:{s:4:\"tmpl\";i:433;s:2:\"id\";i: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\";i: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\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:16:{s:4:\"tmpl\";i:435;s:2:\"id\";i: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\";i: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\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:16:{s:4:\"tmpl\";i:437;s:2:\"id\";i: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\";i: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\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:16:{s:4:\"tmpl\";i:701;s:2:\"id\";i: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\";i: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\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:16:{s:4:\"tmpl\";i:702;s:2:\"id\";i: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\";i: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\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:16:{s:4:\"tmpl\";i:703;s:2:\"id\";i: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\";i: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\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-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:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-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:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-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:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{s:4:\"tmpl\";i:412;s:2:\"id\";i: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\";i: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\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:714;a:16:{s:4:\"tmpl\";i:413;s:2:\"id\";i: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\";i: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\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:16:{s:4:\"tmpl\";i:418;s:2:\"id\";i: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\";i: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\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:16:{s:4:\"tmpl\";i:420;s:2:\"id\";i: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\";i: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\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:16:{s:4:\"tmpl\";i:403;s:2:\"id\";i: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\";i: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\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:16:{s:4:\"tmpl\";i:417;s:2:\"id\";i: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\";i: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\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:16:{s:4:\"tmpl\";i:415;s:2:\"id\";i: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\";i: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\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:16:{s:4:\"tmpl\";i:414;s:2:\"id\";i: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\";i: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\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:16:{s:4:\"tmpl\";i:401;s:2:\"id\";i: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\";i: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\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:16:{s:4:\"tmpl\";i:408;s:2:\"id\";i: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\";i: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\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:16:{s:4:\"tmpl\";i:406;s:2:\"id\";i: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\";i: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\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:16:{s:4:\"tmpl\";i:404;s:2:\"id\";i: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\";i: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\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:16:{s:4:\"tmpl\";i:421;s:2:\"id\";i: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\";i: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\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:16:{s:4:\"tmpl\";i:419;s:2:\"id\";i: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\";i: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\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:16:{s:4:\"tmpl\";i:416;s:2:\"id\";i: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\";i: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\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:16:{s:4:\"tmpl\";i:402;s:2:\"id\";i: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\";i: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\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:16:{s:4:\"tmpl\";i:560;s:2:\"id\";i: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\";i: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\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:16:{s:4:\"tmpl\";i:411;s:2:\"id\";i: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\";i: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\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:16:{s:4:\"tmpl\";i:410;s:2:\"id\";i: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\";i: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\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:16:{s:4:\"tmpl\";i:409;s:2:\"id\";i: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\";i: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\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:16:{s:4:\"tmpl\";i:407;s:2:\"id\";i: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\";i: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\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:16:{s:4:\"tmpl\";i:405;s:2:\"id\";i: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\";i: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\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:16:{s:4:\"tmpl\";i:677;s:2:\"id\";i: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\";i: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\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:16:{s:4:\"tmpl\";i:678;s:2:\"id\";i: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\";i: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\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:16:{s:4:\"tmpl\";i:679;s:2:\"id\";i: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\";i: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\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:16:{s:4:\"tmpl\";i:680;s:2:\"id\";i: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\";i: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\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:16:{s:4:\"tmpl\";i:681;s:2:\"id\";i: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\";i: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\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:16:{s:4:\"tmpl\";i:682;s:2:\"id\";i: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\";i: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\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{s:4:\"tmpl\";i:683;s:2:\"id\";i: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\";i: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\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{s:4:\"tmpl\";i:640;s:2:\"id\";i: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\";i: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\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{s:4:\"tmpl\";i:639;s:2:\"id\";i: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\";i: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\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{s:4:\"tmpl\";i:705;s:2:\"id\";i: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\";i: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\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:16:{s:4:\"tmpl\";i:704;s:2:\"id\";i: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\";i: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\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:16:{s:4:\"tmpl\";i:706;s:2:\"id\";i: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\";i: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\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:16:{s:4:\"tmpl\";i:707;s:2:\"id\";i: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\";i: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\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:16:{s:4:\"tmpl\";i:708;s:2:\"id\";i: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\";i: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\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:16:{s:4:\"tmpl\";i:697;s:2:\"id\";i: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\";i: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\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:16:{s:4:\"tmpl\";i:698;s:2:\"id\";i: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\";i: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\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{s:4:\"tmpl\";i:699;s:2:\"id\";i: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\";i: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\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:16:{s:4:\"tmpl\";i:700;s:2:\"id\";i: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\";i: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\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:16:{s:4:\"tmpl\";i:555;s:2:\"id\";i: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\";i: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\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:754;a:16:{s:4:\"tmpl\";i:562;s:2:\"id\";i: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\";i: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\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:16:{s:4:\"tmpl\";i:561;s:2:\"id\";i: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\";i: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\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:16:{s:4:\"tmpl\";i:563;s:2:\"id\";i: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\";i: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\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:16:{s:4:\"tmpl\";i:550;s:2:\"id\";i: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\";i: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\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:16:{s:4:\"tmpl\";i:554;s:2:\"id\";i: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\";i: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\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:16:{s:4:\"tmpl\";i:551;s:2:\"id\";i: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\";i: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\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:16:{s:4:\"tmpl\";i:552;s:2:\"id\";i: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\";i: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\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:16:{s:4:\"tmpl\";i:549;s:2:\"id\";i: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\";i: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\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:16:{s:4:\"tmpl\";i:553;s:2:\"id\";i: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\";i: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\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:16:{s:4:\"tmpl\";i:538;s:2:\"id\";i: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\";i: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\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:16:{s:4:\"tmpl\";i:537;s:2:\"id\";i: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\";i: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\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:16:{s:4:\"tmpl\";i:559;s:2:\"id\";i: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\";i: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\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:766;a:16:{s:4:\"tmpl\";i:469;s:2:\"id\";i: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\";i: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\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:16:{s:4:\"tmpl\";i:472;s:2:\"id\";i: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\";i: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\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:16:{s:4:\"tmpl\";i:470;s:2:\"id\";i: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\";i: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\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:16:{s:4:\"tmpl\";i:477;s:2:\"id\";i: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\";i: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\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:16:{s:4:\"tmpl\";i:471;s:2:\"id\";i: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\";i: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\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{s:4:\"tmpl\";i:465;s:2:\"id\";i: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\";i: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\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:772;a:16:{s:4:\"tmpl\";i:462;s:2:\"id\";i: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\";i: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\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{s:4:\"tmpl\";i:458;s:2:\"id\";i: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\";i: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\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:16:{s:4:\"tmpl\";i:543;s:2:\"id\";i: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\";i: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\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:16:{s:4:\"tmpl\";i:455;s:2:\"id\";i: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\";i: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\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:16:{s:4:\"tmpl\";i:463;s:2:\"id\";i: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\";i: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\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:777;a:16:{s:4:\"tmpl\";i:558;s:2:\"id\";i: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\";i: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\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:16:{s:4:\"tmpl\";i:464;s:2:\"id\";i: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\";i: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\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:16:{s:4:\"tmpl\";i:466;s:2:\"id\";i: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\";i: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\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:16:{s:4:\"tmpl\";i:459;s:2:\"id\";i: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\";i: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\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:16:{s:4:\"tmpl\";i:467;s:2:\"id\";i: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\";i: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\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:16:{s:4:\"tmpl\";i:461;s:2:\"id\";i: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\";i: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\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:783;a:16:{s:4:\"tmpl\";i:460;s:2:\"id\";i: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\";i: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\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:16:{s:4:\"tmpl\";i:457;s:2:\"id\";i: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\";i: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\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:16:{s:4:\"tmpl\";i:456;s:2:\"id\";i: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\";i: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\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:16:{s:4:\"tmpl\";i:544;s:2:\"id\";i: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\";i: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\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:16:{s:4:\"tmpl\";i:454;s:2:\"id\";i: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\";i: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\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:16:{s:4:\"tmpl\";i:586;s:2:\"id\";i: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\";i: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\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:16:{s:4:\"tmpl\";i:582;s:2:\"id\";i: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\";i: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\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:790;a:16:{s:4:\"tmpl\";i:580;s:2:\"id\";i: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\";i: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\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:16:{s:4:\"tmpl\";i:578;s:2:\"id\";i: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\";i: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\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:16:{s:4:\"tmpl\";i:595;s:2:\"id\";i: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\";i: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\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:793;a:16:{s:4:\"tmpl\";i:593;s:2:\"id\";i: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\";i: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\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:794;a:16:{s:4:\"tmpl\";i:576;s:2:\"id\";i: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\";i: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\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:16:{s:4:\"tmpl\";i:594;s:2:\"id\";i: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\";i: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\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:16:{s:4:\"tmpl\";i:577;s:2:\"id\";i: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\";i: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\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:16:{s:4:\"tmpl\";i:579;s:2:\"id\";i: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\";i: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\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:16:{s:4:\"tmpl\";i:581;s:2:\"id\";i: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\";i: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\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:16:{s:4:\"tmpl\";i:583;s:2:\"id\";i: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\";i: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\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:800;a:16:{s:4:\"tmpl\";i:584;s:2:\"id\";i: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\";i: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\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:16:{s:4:\"tmpl\";i:585;s:2:\"id\";i: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\";i: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\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:16:{s:4:\"tmpl\";i:575;s:2:\"id\";i: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\";i: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\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:803;a:16:{s:4:\"tmpl\";i:587;s:2:\"id\";i: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\";i: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\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:804;a:16:{s:4:\"tmpl\";i:591;s:2:\"id\";i: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\";i: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\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:805;a:16:{s:4:\"tmpl\";i:592;s:2:\"id\";i: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\";i: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\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:16:{s:4:\"tmpl\";i:589;s:2:\"id\";i: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\";i: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\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:16:{s:4:\"tmpl\";i:590;s:2:\"id\";i: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\";i: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\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:16:{s:4:\"tmpl\";i:588;s:2:\"id\";i: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\";i: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\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i: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\";i: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\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:810;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i: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\";i: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\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i: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\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i: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\";i: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\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i: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\";i: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\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:16:{s:4:\"tmpl\";i:926;s:2:\"id\";i: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\";i: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\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-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:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-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:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-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:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(173740,'ihf-virtual-page-title-mortgage-calculator','Mortgage Calculator','yes'),(173741,'ihf-virtual-page-template-mortgage-calculator','template/template-page.php','yes'),(173742,'ihf-virtual-page-permalink-text-mortgage-calculator','mortgage-calculator','yes'),(173743,'ihf-virtual-page-meta-tags-mortgage-calculator','<meta name=\"description\" content=\"\" />','yes'),(357898,'_transient_350bd4d96_elements','a:0:{}','yes'),(357899,'_transient_350bd4d96_custom_js','','yes'),(357900,'_transient_350bd4d96_updated_at','1605059632','yes'),(178722,'revslider-templates-hash','cbe81e48949b38763c15535d330662d5','yes'),(176453,'revslider-update-hash','c51b0d8450c5372d6ba8e2f4e27b2804','yes'),(176454,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(176455,'rs-addons-counter','2','yes'),(357483,'_transient_4fa89cd29_elements','a:0:{}','yes'),(357484,'_transient_4fa89cd29_custom_js','','yes'),(357485,'_transient_4fa89cd29_updated_at','1605059632','yes'),(357487,'_transient_bba3a3921_elements','a:0:{}','yes'),(357488,'_transient_bba3a3921_custom_js','','yes'),(357489,'_transient_bba3a3921_updated_at','1605059632','yes'),(357500,'_transient_6c90b6c76_elements','a:0:{}','yes'),(357501,'_transient_6c90b6c76_custom_js','','yes'),(140984,'houzez_ptype_settings','a:7:{s:18:\"houzez_agents_post\";s:7:\"enabled\";s:20:\"houzez_agencies_post\";s:7:\"enabled\";s:20:\"houzez_packages_post\";s:8:\"disabled\";s:20:\"houzez_invoices_post\";s:8:\"disabled\";s:20:\"houzez_partners_post\";s:7:\"enabled\";s:24:\"houzez_testimonials_post\";s:7:\"enabled\";s:25:\"houzez_packages_info_post\";s:7:\"enabled\";}','yes'),(1251045,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','yes'),(1353901,'6b23e887a_eael_updated_at','1650419774','no'),(1471264,'_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:57:\"https://downloads.wordpress.org/release/wordpress-6.0.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.0.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.0-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.0\";s:7:\"version\";s:3:\"6.0\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.0.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.0.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.0-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.0\";s:7:\"version\";s:3:\"6.0\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1657487500;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(1546582,'f98544ce5_eael_updated_at','1656030088','no'),(1605632,'elementor_events_db_version','1.0.0','no'),(1546580,'f98544ce5_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(361468,'widget_ezw_tco','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(361469,'ez-toc-settings','a:38:{s:15:\"fragment_prefix\";s:1:\"i\";s:8:\"position\";s:6:\"before\";s:5:\"start\";s:1:\"4\";s:17:\"show_heading_text\";s:1:\"1\";s:12:\"heading_text\";s:17:\"Table of Contents\";s:18:\"enabled_post_types\";a:3:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:12:\"houzez_agent\";s:12:\"houzez_agent\";}s:14:\"show_hierarchy\";s:1:\"1\";s:7:\"counter\";s:7:\"decimal\";s:13:\"smooth_scroll\";s:1:\"1\";s:20:\"smooth_scroll_offset\";s:2:\"30\";s:10:\"visibility\";s:1:\"1\";s:5:\"width\";s:4:\"auto\";s:12:\"width_custom\";s:3:\"275\";s:18:\"width_custom_units\";s:2:\"px\";s:8:\"wrapping\";s:4:\"none\";s:15:\"title_font_size\";s:3:\"120\";s:21:\"title_font_size_units\";s:1:\"%\";s:17:\"title_font_weight\";s:3:\"500\";s:9:\"font_size\";s:2:\"95\";s:15:\"font_size_units\";s:1:\"%\";s:5:\"theme\";s:4:\"grey\";s:24:\"custom_background_colour\";s:4:\"#fff\";s:20:\"custom_border_colour\";s:4:\"#ddd\";s:19:\"custom_title_colour\";s:4:\"#999\";s:18:\"custom_link_colour\";s:7:\"#428bca\";s:24:\"custom_link_hover_colour\";s:7:\"#2a6496\";s:26:\"custom_link_visited_colour\";s:7:\"#428bca\";s:14:\"heading_levels\";a:6:{i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";}s:19:\"css_container_class\";s:0:\"\";s:7:\"exclude\";s:0:\"\";s:27:\"mobile_smooth_scroll_offset\";s:1:\"0\";s:13:\"restrict_path\";s:0:\"\";s:21:\"widget_affix_selector\";s:0:\"\";s:26:\"visibility_hide_by_default\";s:1:\"0\";s:9:\"lowercase\";s:1:\"0\";s:9:\"hyphenate\";s:1:\"0\";s:16:\"include_homepage\";s:1:\"0\";s:11:\"exclude_css\";s:1:\"0\";}','yes'),(361451,'_ninja_tables_settings_migration','1','yes'),(361452,'_ninja_tables_sorting_migration','1','yes'),(361454,'_ninja_tables_plugin_suggest_dismiss','1602689392','yes'),(361457,'_ninja_table_db_settings_owner_id','1','yes'),(141022,'um_core_forms','a:3:{s:8:\"register\";i:655;s:5:\"login\";i:656;s:7:\"profile\";i:657;}','yes'),(141023,'um_core_directories','a:1:{s:7:\"members\";i:658;}','yes'),(141017,'um_last_version_upgrade','2.1.5','yes'),(141018,'um_first_activation_date','1588345590','yes'),(141019,'um_version','2.1.5','yes'),(141020,'__ultimatemember_sitekey','lantern-realty.com-OtHvKOiixjPKqu7EUiW1','yes'),(141021,'um_is_installed','1','yes'),(141024,'um_options','a:164:{s:30:\"restricted_access_post_metabox\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:19:\"uninstall_on_delete\";i:0;s:14:\"permalink_base\";s:10:\"user_login\";s:12:\"display_name\";s:9:\"full_name\";s:18:\"display_name_field\";s:0:\"\";s:15:\"author_redirect\";i:1;s:12:\"members_page\";i:1;s:13:\"use_gravatars\";i:0;s:37:\"use_um_gravatar_default_builtin_image\";s:7:\"default\";s:29:\"use_um_gravatar_default_image\";i:0;s:24:\"reset_require_strongpass\";i:0;s:20:\"account_tab_password\";i:1;s:19:\"account_tab_privacy\";i:1;s:25:\"account_tab_notifications\";i:1;s:18:\"account_tab_delete\";i:1;s:19:\"delete_account_text\";s:150:\"Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below\";s:12:\"account_name\";i:1;s:20:\"account_name_disable\";i:0;s:20:\"account_name_require\";i:1;s:13:\"account_email\";i:1;s:24:\"account_general_password\";i:0;s:25:\"account_hide_in_directory\";i:1;s:33:\"account_hide_in_directory_default\";s:2:\"No\";s:26:\"account_require_strongpass\";i:0;s:17:\"photo_thumb_sizes\";a:3:{i:0;i:40;i:1;i:80;i:2;i:190;}s:17:\"cover_thumb_sizes\";a:2:{i:0;i:300;i:1;i:600;}s:10:\"accessible\";i:0;s:15:\"access_redirect\";s:0:\"\";s:19:\"access_exclude_uris\";a:0:{}s:20:\"home_page_accessible\";i:1;s:24:\"category_page_accessible\";i:1;s:25:\"restricted_access_message\";s:0:\"\";s:17:\"restricted_blocks\";i:0;s:13:\"enable_blocks\";i:0;s:24:\"restricted_block_message\";s:0:\"\";s:27:\"enable_reset_password_limit\";i:1;s:27:\"reset_password_limit_number\";i:3;s:14:\"blocked_emails\";s:0:\"\";s:13:\"blocked_words\";s:47:\"admin\r\nadministrator\r\nwebmaster\r\nsupport\r\nstaff\";s:14:\"default_avatar\";s:0:\"\";s:13:\"default_cover\";s:0:\"\";s:28:\"disable_profile_photo_upload\";i:0;s:21:\"profile_show_metaicon\";i:0;s:12:\"profile_menu\";i:1;s:24:\"profile_menu_default_tab\";s:4:\"main\";s:18:\"profile_menu_icons\";i:1;s:13:\"form_asterisk\";i:0;s:13:\"profile_title\";s:28:\"{display_name} | {site_name}\";s:12:\"profile_desc\";s:83:\"{display_name} is on {site_name}. Join {site_name} to view {display_name}\'s profile\";s:11:\"admin_email\";s:20:\"ckeziah127@gmail.com\";s:9:\"mail_from\";s:30:\"Lantern Realty and Development\";s:14:\"mail_from_addr\";s:20:\"ckeziah127@gmail.com\";s:10:\"email_html\";i:1;s:17:\"image_compression\";i:60;s:15:\"image_max_width\";i:1000;s:15:\"cover_min_width\";i:1000;s:22:\"profile_photo_max_size\";i:999999999;s:20:\"cover_photo_max_size\";i:999999999;s:22:\"custom_roles_increment\";i:1;s:28:\"um_profile_object_cache_stop\";i:0;s:16:\"rest_api_version\";s:3:\"2.0\";s:26:\"member_directory_own_table\";i:0;s:21:\"profile_show_html_bio\";i:0;s:16:\"profile_tab_main\";i:1;s:24:\"profile_tab_main_privacy\";i:0;s:22:\"profile_tab_main_roles\";s:0:\"\";s:17:\"profile_tab_posts\";i:1;s:25:\"profile_tab_posts_privacy\";i:0;s:23:\"profile_tab_posts_roles\";s:0:\"\";s:20:\"profile_tab_comments\";i:1;s:28:\"profile_tab_comments_privacy\";i:0;s:26:\"profile_tab_comments_roles\";s:0:\"\";s:16:\"welcome_email_on\";b:1;s:17:\"welcome_email_sub\";s:23:\"Welcome to {site_name}!\";s:13:\"welcome_email\";s:365:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account is now active.<br /><br />To login please visit the following url:<br /><br />{login_url} <br /><br />Your account e-mail: {email} <br />Your account username: {username} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:18:\"checkmail_email_on\";b:0;s:19:\"checkmail_email_sub\";s:28:\"Please activate your account\";s:15:\"checkmail_email\";s:304:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! To activate your account, please click the link below to confirm your email address:<br /><br />{account_activation_link} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks, <br />{site_name}\";s:16:\"pending_email_on\";b:0;s:17:\"pending_email_sub\";s:30:\"[{site_name}] New user account\";s:13:\"pending_email\";s:309:\"Hi {display_name}, <br /><br />Thank you for signing up with {site_name}! Your account is currently being reviewed by a member of our team.<br /><br />Please allow us some time to process your request.<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"approved_email_on\";b:0;s:18:\"approved_email_sub\";s:41:\"Your account at {site_name} is now active\";s:14:\"approved_email\";s:438:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account has been approved and is now active.<br /><br />To login please visit the following url:<br /><br />{login_url}<br /><br />Your account e-mail: {email}<br />Your account username: {username}<br />Set your account password: {password_reset_link}<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"rejected_email_on\";b:0;s:18:\"rejected_email_sub\";s:30:\"Your account has been rejected\";s:14:\"rejected_email\";s:288:\"Hi {display_name},<br /><br />Thank you for applying for membership to {site_name}! We have reviewed your information and unfortunately we are unable to accept you as a member at this moment.<br /><br />Please feel free to apply again at a future date.<br /><br />Thanks,<br />{site_name}\";s:17:\"inactive_email_on\";b:1;s:18:\"inactive_email_sub\";s:33:\"Your account has been deactivated\";s:14:\"inactive_email\";s:250:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deactivated.<br /><br />If you would like your account to be reactivated please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"deletion_email_on\";b:1;s:18:\"deletion_email_sub\";s:29:\"Your account has been deleted\";s:14:\"deletion_email\";s:355:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deleted. All of your personal information has been permanently deleted and you will no longer be able to login to {site_name}.<br /><br />If your account has been deleted by accident please contact us at {admin_email} <br />Thanks,<br />{site_name}\";s:16:\"resetpw_email_on\";b:1;s:17:\"resetpw_email_sub\";s:19:\"Reset your password\";s:13:\"resetpw_email\";s:303:\"Hi {display_name},<br /><br />We received a request to reset the password for your account. If you made this request, click the link below to change your password:<br /><br />{password_reset_link}<br /><br />If you didn\'t make this request, you can ignore this email <br /><br />Thanks,<br />{site_name}\";s:18:\"changedpw_email_on\";b:1;s:19:\"changedpw_email_sub\";s:42:\"Your {site_name} password has been changed\";s:15:\"changedpw_email\";s:307:\"Hi {display_name},<br /><br />You recently changed the password associated with your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:23:\"changedaccount_email_on\";b:1;s:24:\"changedaccount_email_sub\";s:39:\"Your account at {site_name} was updated\";s:20:\"changedaccount_email\";s:278:\"Hi {display_name},<br /><br />You recently updated your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:24:\"notification_new_user_on\";b:1;s:25:\"notification_new_user_sub\";s:30:\"[{site_name}] New user account\";s:21:\"notification_new_user\";s:211:\"{display_name} has just created an account on {site_name}. To view their profile click here:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:22:\"notification_review_on\";b:0;s:23:\"notification_review_sub\";s:38:\"[{site_name}] New user awaiting review\";s:19:\"notification_review\";s:277:\"{display_name} has just applied for membership to {site_name} and is waiting to be reviewed.<br /><br />To review this member please click the following link:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:24:\"notification_deletion_on\";b:0;s:25:\"notification_deletion_sub\";s:29:\"[{site_name}] Account deleted\";s:21:\"notification_deletion\";s:58:\"{display_name} has just deleted their {site_name} account.\";s:9:\"core_user\";s:1:\"2\";s:10:\"core_login\";s:1:\"2\";s:13:\"core_register\";s:1:\"2\";s:12:\"core_members\";s:1:\"2\";s:11:\"core_logout\";s:1:\"2\";s:12:\"core_account\";s:3:\"649\";s:19:\"core_password-reset\";s:1:\"2\";s:17:\"profile_show_name\";i:1;s:25:\"profile_show_social_links\";i:0;s:16:\"profile_show_bio\";i:1;s:20:\"profile_bio_maxchars\";i:180;s:19:\"profile_header_menu\";s:2:\"bc\";s:18:\"profile_empty_text\";i:1;s:22:\"profile_empty_text_emo\";i:1;s:12:\"profile_role\";a:0:{}s:16:\"profile_template\";s:7:\"profile\";s:17:\"profile_max_width\";s:6:\"1000px\";s:22:\"profile_area_max_width\";s:5:\"600px\";s:13:\"profile_align\";s:6:\"center\";s:13:\"profile_icons\";s:5:\"label\";s:28:\"profile_disable_photo_upload\";i:0;s:17:\"profile_photosize\";s:3:\"190\";s:21:\"profile_cover_enabled\";i:1;s:17:\"profile_coversize\";s:8:\"original\";s:19:\"profile_cover_ratio\";s:5:\"2.7:1\";s:19:\"profile_photocorner\";s:1:\"1\";s:17:\"profile_header_bg\";s:0:\"\";s:24:\"profile_primary_btn_word\";s:14:\"Update Profile\";s:21:\"profile_secondary_btn\";s:1:\"1\";s:26:\"profile_secondary_btn_word\";s:6:\"Cancel\";s:13:\"register_role\";s:1:\"0\";s:17:\"register_template\";s:8:\"register\";s:18:\"register_max_width\";s:5:\"450px\";s:14:\"register_align\";s:6:\"center\";s:14:\"register_icons\";s:5:\"label\";s:25:\"register_primary_btn_word\";s:8:\"Register\";s:22:\"register_secondary_btn\";i:1;s:27:\"register_secondary_btn_word\";s:5:\"Login\";s:26:\"register_secondary_btn_url\";s:0:\"\";s:14:\"login_template\";s:5:\"login\";s:15:\"login_max_width\";s:5:\"450px\";s:11:\"login_align\";s:6:\"center\";s:11:\"login_icons\";s:5:\"label\";s:22:\"login_primary_btn_word\";s:5:\"Login\";s:22:\"login_forgot_pass_link\";i:1;s:21:\"login_show_rememberme\";i:1;s:19:\"login_secondary_btn\";i:1;s:24:\"login_secondary_btn_word\";s:8:\"Register\";s:23:\"login_secondary_btn_url\";s:0:\"\";s:18:\"directory_template\";s:7:\"members\";s:16:\"directory_header\";s:21:\"{total_users} Members\";s:23:\"directory_header_single\";s:20:\"{total_users} Member\";s:14:\"pages_settings\";s:1:\"1\";}','yes'),(141025,'um_role_subscriber_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141026,'um_role_author_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141027,'um_role_contributor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141028,'um_role_editor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141029,'um_role_administrator_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(141030,'widget_um_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(141031,'um_cache_userdata_1','a:167:{s:2:\"ID\";i:1;s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$BTCQX/NvDFrHwrT7kO3c.Fvk3bWFG..\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:20:\"ckeziah127@gmail.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2018-08-20 00:26:23\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"admin\";s:13:\"administrator\";b:1;s:8:\"wp_roles\";s:13:\"administrator\";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: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:17:\"create_properties\";b:1;s:18:\"publish_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:19:\"delete_user_package\";b:1;s:20:\"delete_user_packages\";b:1;s:18:\"edit_user_packages\";b:1;s:27:\"delete_others_user_packages\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:11:\"run_adminer\";b:1;s:24:\"manage_user_registration\";b:1;s:22:\"edit_user_registration\";b:1;s:22:\"read_user_registration\";b:1;s:24:\"delete_user_registration\";b:1;s:23:\"edit_user_registrations\";b:1;s:30:\"edit_others_user_registrations\";b:1;s:26:\"publish_user_registrations\";b:1;s:31:\"read_private_user_registrations\";b:1;s:25:\"delete_user_registrations\";b:1;s:33:\"delete_private_user_registrations\";b:1;s:35:\"delete_published_user_registrations\";b:1;s:32:\"delete_others_user_registrations\";b:1;s:31:\"edit_private_user_registrations\";b:1;s:33:\"edit_published_user_registrations\";b:1;s:30:\"manage_user_registration_terms\";b:1;s:28:\"edit_user_registration_terms\";b:1;s:30:\"delete_user_registration_terms\";b:1;s:30:\"assign_user_registration_terms\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:5:\"admin\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:18:\"show_welcome_panel\";s:1:\"0\";s:39:\"lrwp_dashboard_quick_press_last_post_id\";s:3:\"588\";s:25:\"community-events-location\";s:34:\"a:1:{s:2:\"ip\";s:11:\"172.72.70.0\";}\";s:23:\"jetpack_tracks_wpcom_id\";N;s:22:\"jetpack_tracks_anon_id\";s:32:\"jetpack:x/sjnzYY8tArjzB60B7fetdU\";s:24:\"show_try_gutenberg_panel\";s:1:\"0\";s:14:\"lrwp_r_tru_u_x\";s:46:\"a:2:{s:2:\"id\";i:0;s:7:\"expires\";i:1549742588;}\";s:29:\"autodescription-user-settings\";s:30:\"a:1:{s:12:\"counter_type\";i:0;}\";s:15:\"ur_first_access\";s:1:\"1\";s:14:\"account_status\";s:8:\"approved\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:13:\"administrator\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:18:\"can_access_wpadmin\";i:1;s:20:\"can_not_see_adminbar\";i:0;s:17:\"can_edit_everyone\";i:1;s:19:\"can_delete_everyone\";i:1;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:16:\"default_homepage\";i:1;s:11:\"after_login\";s:14:\"redirect_admin\";s:12:\"after_logout\";s:13:\"redirect_home\";s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:1;s:26:\"can_access_private_profile\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:1;}','no'),(141049,'um_cached_users_queue','0','no'),(141034,'um_cache_fonticons','a:1219:{i:0;s:13:\"um-icon-alert\";i:1;s:21:\"um-icon-alert-circled\";i:2;s:19:\"um-icon-android-add\";i:3;s:26:\"um-icon-android-add-circle\";i:4;s:27:\"um-icon-android-alarm-clock\";i:5;s:21:\"um-icon-android-alert\";i:6;s:20:\"um-icon-android-apps\";i:7;s:23:\"um-icon-android-archive\";i:8;s:26:\"um-icon-android-arrow-back\";i:9;s:26:\"um-icon-android-arrow-down\";i:10;s:30:\"um-icon-android-arrow-dropdown\";i:11;s:37:\"um-icon-android-arrow-dropdown-circle\";i:12;s:30:\"um-icon-android-arrow-dropleft\";i:13;s:37:\"um-icon-android-arrow-dropleft-circle\";i:14;s:31:\"um-icon-android-arrow-dropright\";i:15;s:38:\"um-icon-android-arrow-dropright-circle\";i:16;s:28:\"um-icon-android-arrow-dropup\";i:17;s:35:\"um-icon-android-arrow-dropup-circle\";i:18;s:29:\"um-icon-android-arrow-forward\";i:19;s:24:\"um-icon-android-arrow-up\";i:20;s:22:\"um-icon-android-attach\";i:21;s:19:\"um-icon-android-bar\";i:22;s:23:\"um-icon-android-bicycle\";i:23;s:20:\"um-icon-android-boat\";i:24;s:24:\"um-icon-android-bookmark\";i:25;s:20:\"um-icon-android-bulb\";i:26;s:19:\"um-icon-android-bus\";i:27;s:24:\"um-icon-android-calendar\";i:28;s:20:\"um-icon-android-call\";i:29;s:22:\"um-icon-android-camera\";i:30;s:22:\"um-icon-android-cancel\";i:31;s:19:\"um-icon-android-car\";i:32;s:20:\"um-icon-android-cart\";i:33;s:20:\"um-icon-android-chat\";i:34;s:24:\"um-icon-android-checkbox\";i:35;s:30:\"um-icon-android-checkbox-blank\";i:36;s:32:\"um-icon-android-checkbox-outline\";i:37;s:38:\"um-icon-android-checkbox-outline-blank\";i:38;s:32:\"um-icon-android-checkmark-circle\";i:39;s:25:\"um-icon-android-clipboard\";i:40;s:21:\"um-icon-android-close\";i:41;s:21:\"um-icon-android-cloud\";i:42;s:28:\"um-icon-android-cloud-circle\";i:43;s:26:\"um-icon-android-cloud-done\";i:44;s:29:\"um-icon-android-cloud-outline\";i:45;s:29:\"um-icon-android-color-palette\";i:46;s:23:\"um-icon-android-compass\";i:47;s:23:\"um-icon-android-contact\";i:48;s:24:\"um-icon-android-contacts\";i:49;s:24:\"um-icon-android-contract\";i:50;s:22:\"um-icon-android-create\";i:51;s:22:\"um-icon-android-delete\";i:52;s:23:\"um-icon-android-desktop\";i:53;s:24:\"um-icon-android-document\";i:54;s:20:\"um-icon-android-done\";i:55;s:24:\"um-icon-android-done-all\";i:56;s:24:\"um-icon-android-download\";i:57;s:22:\"um-icon-android-drafts\";i:58;s:20:\"um-icon-android-exit\";i:59;s:22:\"um-icon-android-expand\";i:60;s:24:\"um-icon-android-favorite\";i:61;s:32:\"um-icon-android-favorite-outline\";i:62;s:20:\"um-icon-android-film\";i:63;s:22:\"um-icon-android-folder\";i:64;s:27:\"um-icon-android-folder-open\";i:65;s:22:\"um-icon-android-funnel\";i:66;s:21:\"um-icon-android-globe\";i:67;s:20:\"um-icon-android-hand\";i:68;s:23:\"um-icon-android-hangout\";i:69;s:21:\"um-icon-android-happy\";i:70;s:20:\"um-icon-android-home\";i:71;s:21:\"um-icon-android-image\";i:72;s:22:\"um-icon-android-laptop\";i:73;s:20:\"um-icon-android-list\";i:74;s:22:\"um-icon-android-locate\";i:75;s:20:\"um-icon-android-lock\";i:76;s:20:\"um-icon-android-mail\";i:77;s:19:\"um-icon-android-map\";i:78;s:20:\"um-icon-android-menu\";i:79;s:26:\"um-icon-android-microphone\";i:80;s:30:\"um-icon-android-microphone-off\";i:81;s:31:\"um-icon-android-more-horizontal\";i:82;s:29:\"um-icon-android-more-vertical\";i:83;s:24:\"um-icon-android-navigate\";i:84;s:29:\"um-icon-android-notifications\";i:85;s:34:\"um-icon-android-notifications-none\";i:86;s:33:\"um-icon-android-notifications-off\";i:87;s:20:\"um-icon-android-open\";i:88;s:23:\"um-icon-android-options\";i:89;s:22:\"um-icon-android-people\";i:90;s:22:\"um-icon-android-person\";i:91;s:26:\"um-icon-android-person-add\";i:92;s:31:\"um-icon-android-phone-landscape\";i:93;s:30:\"um-icon-android-phone-portrait\";i:94;s:19:\"um-icon-android-pin\";i:95;s:21:\"um-icon-android-plane\";i:96;s:25:\"um-icon-android-playstore\";i:97;s:21:\"um-icon-android-print\";i:98;s:32:\"um-icon-android-radio-button-off\";i:99;s:31:\"um-icon-android-radio-button-on\";i:100;s:23:\"um-icon-android-refresh\";i:101;s:22:\"um-icon-android-remove\";i:102;s:29:\"um-icon-android-remove-circle\";i:103;s:26:\"um-icon-android-restaurant\";i:104;s:19:\"um-icon-android-sad\";i:105;s:22:\"um-icon-android-search\";i:106;s:20:\"um-icon-android-send\";i:107;s:24:\"um-icon-android-settings\";i:108;s:21:\"um-icon-android-share\";i:109;s:25:\"um-icon-android-share-alt\";i:110;s:20:\"um-icon-android-star\";i:111;s:25:\"um-icon-android-star-half\";i:112;s:28:\"um-icon-android-star-outline\";i:113;s:25:\"um-icon-android-stopwatch\";i:114;s:22:\"um-icon-android-subway\";i:115;s:21:\"um-icon-android-sunny\";i:116;s:20:\"um-icon-android-sync\";i:117;s:23:\"um-icon-android-textsms\";i:118;s:20:\"um-icon-android-time\";i:119;s:21:\"um-icon-android-train\";i:120;s:22:\"um-icon-android-unlock\";i:121;s:22:\"um-icon-android-upload\";i:122;s:27:\"um-icon-android-volume-down\";i:123;s:27:\"um-icon-android-volume-mute\";i:124;s:26:\"um-icon-android-volume-off\";i:125;s:25:\"um-icon-android-volume-up\";i:126;s:20:\"um-icon-android-walk\";i:127;s:23:\"um-icon-android-warning\";i:128;s:21:\"um-icon-android-watch\";i:129;s:20:\"um-icon-android-wifi\";i:130;s:16:\"um-icon-aperture\";i:131;s:15:\"um-icon-archive\";i:132;s:20:\"um-icon-arrow-down-a\";i:133;s:20:\"um-icon-arrow-down-b\";i:134;s:20:\"um-icon-arrow-down-c\";i:135;s:20:\"um-icon-arrow-expand\";i:136;s:29:\"um-icon-arrow-graph-down-left\";i:137;s:30:\"um-icon-arrow-graph-down-right\";i:138;s:27:\"um-icon-arrow-graph-up-left\";i:139;s:28:\"um-icon-arrow-graph-up-right\";i:140;s:20:\"um-icon-arrow-left-a\";i:141;s:20:\"um-icon-arrow-left-b\";i:142;s:20:\"um-icon-arrow-left-c\";i:143;s:18:\"um-icon-arrow-move\";i:144;s:20:\"um-icon-arrow-resize\";i:145;s:25:\"um-icon-arrow-return-left\";i:146;s:26:\"um-icon-arrow-return-right\";i:147;s:21:\"um-icon-arrow-right-a\";i:148;s:21:\"um-icon-arrow-right-b\";i:149;s:21:\"um-icon-arrow-right-c\";i:150;s:20:\"um-icon-arrow-shrink\";i:151;s:18:\"um-icon-arrow-swap\";i:152;s:18:\"um-icon-arrow-up-a\";i:153;s:18:\"um-icon-arrow-up-b\";i:154;s:18:\"um-icon-arrow-up-c\";i:155;s:16:\"um-icon-asterisk\";i:156;s:10:\"um-icon-at\";i:157;s:17:\"um-icon-backspace\";i:158;s:25:\"um-icon-backspace-outline\";i:159;s:11:\"um-icon-bag\";i:160;s:24:\"um-icon-battery-charging\";i:161;s:21:\"um-icon-battery-empty\";i:162;s:20:\"um-icon-battery-full\";i:163;s:20:\"um-icon-battery-half\";i:164;s:19:\"um-icon-battery-low\";i:165;s:14:\"um-icon-beaker\";i:166;s:12:\"um-icon-beer\";i:167;s:17:\"um-icon-bluetooth\";i:168;s:15:\"um-icon-bonfire\";i:169;s:16:\"um-icon-bookmark\";i:170;s:14:\"um-icon-bowtie\";i:171;s:17:\"um-icon-briefcase\";i:172;s:11:\"um-icon-bug\";i:173;s:18:\"um-icon-calculator\";i:174;s:16:\"um-icon-calendar\";i:175;s:14:\"um-icon-camera\";i:176;s:12:\"um-icon-card\";i:177;s:12:\"um-icon-cash\";i:178;s:15:\"um-icon-chatbox\";i:179;s:23:\"um-icon-chatbox-working\";i:180;s:17:\"um-icon-chatboxes\";i:181;s:18:\"um-icon-chatbubble\";i:182;s:26:\"um-icon-chatbubble-working\";i:183;s:19:\"um-icon-chatbubbles\";i:184;s:17:\"um-icon-checkmark\";i:185;s:25:\"um-icon-checkmark-circled\";i:186;s:23:\"um-icon-checkmark-round\";i:187;s:20:\"um-icon-chevron-down\";i:188;s:20:\"um-icon-chevron-left\";i:189;s:21:\"um-icon-chevron-right\";i:190;s:18:\"um-icon-chevron-up\";i:191;s:17:\"um-icon-clipboard\";i:192;s:13:\"um-icon-clock\";i:193;s:13:\"um-icon-close\";i:194;s:21:\"um-icon-close-circled\";i:195;s:19:\"um-icon-close-round\";i:196;s:25:\"um-icon-closed-captioning\";i:197;s:13:\"um-icon-cloud\";i:198;s:12:\"um-icon-code\";i:199;s:21:\"um-icon-code-download\";i:200;s:20:\"um-icon-code-working\";i:201;s:14:\"um-icon-coffee\";i:202;s:15:\"um-icon-compass\";i:203;s:15:\"um-icon-compose\";i:204;s:23:\"um-icon-connection-bars\";i:205;s:16:\"um-icon-contrast\";i:206;s:12:\"um-icon-crop\";i:207;s:12:\"um-icon-cube\";i:208;s:12:\"um-icon-disc\";i:209;s:16:\"um-icon-document\";i:210;s:21:\"um-icon-document-text\";i:211;s:12:\"um-icon-drag\";i:212;s:13:\"um-icon-earth\";i:213;s:13:\"um-icon-easel\";i:214;s:12:\"um-icon-edit\";i:215;s:11:\"um-icon-egg\";i:216;s:13:\"um-icon-eject\";i:217;s:13:\"um-icon-email\";i:218;s:20:\"um-icon-email-unread\";i:219;s:24:\"um-icon-erlenmeyer-flask\";i:220;s:32:\"um-icon-erlenmeyer-flask-bubbles\";i:221;s:11:\"um-icon-eye\";i:222;s:20:\"um-icon-eye-disabled\";i:223;s:14:\"um-icon-female\";i:224;s:14:\"um-icon-filing\";i:225;s:19:\"um-icon-film-marker\";i:226;s:16:\"um-icon-fireball\";i:227;s:12:\"um-icon-flag\";i:228;s:13:\"um-icon-flame\";i:229;s:13:\"um-icon-flash\";i:230;s:17:\"um-icon-flash-off\";i:231;s:14:\"um-icon-folder\";i:232;s:12:\"um-icon-fork\";i:233;s:17:\"um-icon-fork-repo\";i:234;s:15:\"um-icon-forward\";i:235;s:14:\"um-icon-funnel\";i:236;s:14:\"um-icon-gear-a\";i:237;s:14:\"um-icon-gear-b\";i:238;s:12:\"um-icon-grid\";i:239;s:14:\"um-icon-hammer\";i:240;s:13:\"um-icon-happy\";i:241;s:21:\"um-icon-happy-outline\";i:242;s:17:\"um-icon-headphone\";i:243;s:13:\"um-icon-heart\";i:244;s:20:\"um-icon-heart-broken\";i:245;s:12:\"um-icon-help\";i:246;s:17:\"um-icon-help-buoy\";i:247;s:20:\"um-icon-help-circled\";i:248;s:12:\"um-icon-home\";i:249;s:16:\"um-icon-icecream\";i:250;s:13:\"um-icon-image\";i:251;s:14:\"um-icon-images\";i:252;s:19:\"um-icon-information\";i:253;s:27:\"um-icon-information-circled\";i:254;s:13:\"um-icon-ionic\";i:255;s:17:\"um-icon-ios-alarm\";i:256;s:25:\"um-icon-ios-alarm-outline\";i:257;s:18:\"um-icon-ios-albums\";i:258;s:26:\"um-icon-ios-albums-outline\";i:259;s:28:\"um-icon-ios-americanfootball\";i:260;s:36:\"um-icon-ios-americanfootball-outline\";i:261;s:21:\"um-icon-ios-analytics\";i:262;s:29:\"um-icon-ios-analytics-outline\";i:263;s:22:\"um-icon-ios-arrow-back\";i:264;s:22:\"um-icon-ios-arrow-down\";i:265;s:25:\"um-icon-ios-arrow-forward\";i:266;s:22:\"um-icon-ios-arrow-left\";i:267;s:23:\"um-icon-ios-arrow-right\";i:268;s:27:\"um-icon-ios-arrow-thin-down\";i:269;s:27:\"um-icon-ios-arrow-thin-left\";i:270;s:28:\"um-icon-ios-arrow-thin-right\";i:271;s:25:\"um-icon-ios-arrow-thin-up\";i:272;s:20:\"um-icon-ios-arrow-up\";i:273;s:14:\"um-icon-ios-at\";i:274;s:22:\"um-icon-ios-at-outline\";i:275;s:19:\"um-icon-ios-barcode\";i:276;s:27:\"um-icon-ios-barcode-outline\";i:277;s:20:\"um-icon-ios-baseball\";i:278;s:28:\"um-icon-ios-baseball-outline\";i:279;s:22:\"um-icon-ios-basketball\";i:280;s:30:\"um-icon-ios-basketball-outline\";i:281;s:16:\"um-icon-ios-bell\";i:282;s:24:\"um-icon-ios-bell-outline\";i:283;s:16:\"um-icon-ios-body\";i:284;s:24:\"um-icon-ios-body-outline\";i:285;s:16:\"um-icon-ios-bolt\";i:286;s:24:\"um-icon-ios-bolt-outline\";i:287;s:16:\"um-icon-ios-book\";i:288;s:24:\"um-icon-ios-book-outline\";i:289;s:21:\"um-icon-ios-bookmarks\";i:290;s:29:\"um-icon-ios-bookmarks-outline\";i:291;s:15:\"um-icon-ios-box\";i:292;s:23:\"um-icon-ios-box-outline\";i:293;s:21:\"um-icon-ios-briefcase\";i:294;s:29:\"um-icon-ios-briefcase-outline\";i:295;s:20:\"um-icon-ios-browsers\";i:296;s:28:\"um-icon-ios-browsers-outline\";i:297;s:22:\"um-icon-ios-calculator\";i:298;s:30:\"um-icon-ios-calculator-outline\";i:299;s:20:\"um-icon-ios-calendar\";i:300;s:28:\"um-icon-ios-calendar-outline\";i:301;s:18:\"um-icon-ios-camera\";i:302;s:26:\"um-icon-ios-camera-outline\";i:303;s:16:\"um-icon-ios-cart\";i:304;s:24:\"um-icon-ios-cart-outline\";i:305;s:21:\"um-icon-ios-chatboxes\";i:306;s:29:\"um-icon-ios-chatboxes-outline\";i:307;s:22:\"um-icon-ios-chatbubble\";i:308;s:30:\"um-icon-ios-chatbubble-outline\";i:309;s:21:\"um-icon-ios-checkmark\";i:310;s:27:\"um-icon-ios-checkmark-empty\";i:311;s:29:\"um-icon-ios-checkmark-outline\";i:312;s:25:\"um-icon-ios-circle-filled\";i:313;s:26:\"um-icon-ios-circle-outline\";i:314;s:17:\"um-icon-ios-clock\";i:315;s:25:\"um-icon-ios-clock-outline\";i:316;s:17:\"um-icon-ios-close\";i:317;s:23:\"um-icon-ios-close-empty\";i:318;s:25:\"um-icon-ios-close-outline\";i:319;s:17:\"um-icon-ios-cloud\";i:320;s:26:\"um-icon-ios-cloud-download\";i:321;s:34:\"um-icon-ios-cloud-download-outline\";i:322;s:25:\"um-icon-ios-cloud-outline\";i:323;s:24:\"um-icon-ios-cloud-upload\";i:324;s:32:\"um-icon-ios-cloud-upload-outline\";i:325;s:18:\"um-icon-ios-cloudy\";i:326;s:24:\"um-icon-ios-cloudy-night\";i:327;s:32:\"um-icon-ios-cloudy-night-outline\";i:328;s:26:\"um-icon-ios-cloudy-outline\";i:329;s:15:\"um-icon-ios-cog\";i:330;s:23:\"um-icon-ios-cog-outline\";i:331;s:24:\"um-icon-ios-color-filter\";i:332;s:32:\"um-icon-ios-color-filter-outline\";i:333;s:22:\"um-icon-ios-color-wand\";i:334;s:30:\"um-icon-ios-color-wand-outline\";i:335;s:19:\"um-icon-ios-compose\";i:336;s:27:\"um-icon-ios-compose-outline\";i:337;s:19:\"um-icon-ios-contact\";i:338;s:27:\"um-icon-ios-contact-outline\";i:339;s:16:\"um-icon-ios-copy\";i:340;s:24:\"um-icon-ios-copy-outline\";i:341;s:16:\"um-icon-ios-crop\";i:342;s:23:\"um-icon-ios-crop-strong\";i:343;s:20:\"um-icon-ios-download\";i:344;s:28:\"um-icon-ios-download-outline\";i:345;s:16:\"um-icon-ios-drag\";i:346;s:17:\"um-icon-ios-email\";i:347;s:25:\"um-icon-ios-email-outline\";i:348;s:15:\"um-icon-ios-eye\";i:349;s:23:\"um-icon-ios-eye-outline\";i:350;s:23:\"um-icon-ios-fastforward\";i:351;s:31:\"um-icon-ios-fastforward-outline\";i:352;s:18:\"um-icon-ios-filing\";i:353;s:26:\"um-icon-ios-filing-outline\";i:354;s:16:\"um-icon-ios-film\";i:355;s:24:\"um-icon-ios-film-outline\";i:356;s:16:\"um-icon-ios-flag\";i:357;s:24:\"um-icon-ios-flag-outline\";i:358;s:17:\"um-icon-ios-flame\";i:359;s:25:\"um-icon-ios-flame-outline\";i:360;s:17:\"um-icon-ios-flask\";i:361;s:25:\"um-icon-ios-flask-outline\";i:362;s:18:\"um-icon-ios-flower\";i:363;s:26:\"um-icon-ios-flower-outline\";i:364;s:18:\"um-icon-ios-folder\";i:365;s:26:\"um-icon-ios-folder-outline\";i:366;s:20:\"um-icon-ios-football\";i:367;s:28:\"um-icon-ios-football-outline\";i:368;s:29:\"um-icon-ios-game-controller-a\";i:369;s:37:\"um-icon-ios-game-controller-a-outline\";i:370;s:29:\"um-icon-ios-game-controller-b\";i:371;s:37:\"um-icon-ios-game-controller-b-outline\";i:372;s:16:\"um-icon-ios-gear\";i:373;s:24:\"um-icon-ios-gear-outline\";i:374;s:19:\"um-icon-ios-glasses\";i:375;s:27:\"um-icon-ios-glasses-outline\";i:376;s:21:\"um-icon-ios-grid-view\";i:377;s:29:\"um-icon-ios-grid-view-outline\";i:378;s:17:\"um-icon-ios-heart\";i:379;s:25:\"um-icon-ios-heart-outline\";i:380;s:16:\"um-icon-ios-help\";i:381;s:22:\"um-icon-ios-help-empty\";i:382;s:24:\"um-icon-ios-help-outline\";i:383;s:16:\"um-icon-ios-home\";i:384;s:24:\"um-icon-ios-home-outline\";i:385;s:20:\"um-icon-ios-infinite\";i:386;s:28:\"um-icon-ios-infinite-outline\";i:387;s:23:\"um-icon-ios-information\";i:388;s:29:\"um-icon-ios-information-empty\";i:389;s:31:\"um-icon-ios-information-outline\";i:390;s:25:\"um-icon-ios-ionic-outline\";i:391;s:18:\"um-icon-ios-keypad\";i:392;s:26:\"um-icon-ios-keypad-outline\";i:393;s:21:\"um-icon-ios-lightbulb\";i:394;s:29:\"um-icon-ios-lightbulb-outline\";i:395;s:16:\"um-icon-ios-list\";i:396;s:24:\"um-icon-ios-list-outline\";i:397;s:20:\"um-icon-ios-location\";i:398;s:28:\"um-icon-ios-location-outline\";i:399;s:18:\"um-icon-ios-locked\";i:400;s:26:\"um-icon-ios-locked-outline\";i:401;s:16:\"um-icon-ios-loop\";i:402;s:23:\"um-icon-ios-loop-strong\";i:403;s:19:\"um-icon-ios-medical\";i:404;s:27:\"um-icon-ios-medical-outline\";i:405;s:18:\"um-icon-ios-medkit\";i:406;s:26:\"um-icon-ios-medkit-outline\";i:407;s:15:\"um-icon-ios-mic\";i:408;s:19:\"um-icon-ios-mic-off\";i:409;s:23:\"um-icon-ios-mic-outline\";i:410;s:17:\"um-icon-ios-minus\";i:411;s:23:\"um-icon-ios-minus-empty\";i:412;s:25:\"um-icon-ios-minus-outline\";i:413;s:19:\"um-icon-ios-monitor\";i:414;s:27:\"um-icon-ios-monitor-outline\";i:415;s:16:\"um-icon-ios-moon\";i:416;s:24:\"um-icon-ios-moon-outline\";i:417;s:16:\"um-icon-ios-more\";i:418;s:24:\"um-icon-ios-more-outline\";i:419;s:24:\"um-icon-ios-musical-note\";i:420;s:25:\"um-icon-ios-musical-notes\";i:421;s:20:\"um-icon-ios-navigate\";i:422;s:28:\"um-icon-ios-navigate-outline\";i:423;s:21:\"um-icon-ios-nutrition\";i:424;s:29:\"um-icon-ios-nutrition-outline\";i:425;s:17:\"um-icon-ios-paper\";i:426;s:25:\"um-icon-ios-paper-outline\";i:427;s:22:\"um-icon-ios-paperplane\";i:428;s:30:\"um-icon-ios-paperplane-outline\";i:429;s:23:\"um-icon-ios-partlysunny\";i:430;s:31:\"um-icon-ios-partlysunny-outline\";i:431;s:17:\"um-icon-ios-pause\";i:432;s:25:\"um-icon-ios-pause-outline\";i:433;s:15:\"um-icon-ios-paw\";i:434;s:23:\"um-icon-ios-paw-outline\";i:435;s:18:\"um-icon-ios-people\";i:436;s:26:\"um-icon-ios-people-outline\";i:437;s:18:\"um-icon-ios-person\";i:438;s:26:\"um-icon-ios-person-outline\";i:439;s:21:\"um-icon-ios-personadd\";i:440;s:29:\"um-icon-ios-personadd-outline\";i:441;s:18:\"um-icon-ios-photos\";i:442;s:26:\"um-icon-ios-photos-outline\";i:443;s:15:\"um-icon-ios-pie\";i:444;s:23:\"um-icon-ios-pie-outline\";i:445;s:16:\"um-icon-ios-pint\";i:446;s:24:\"um-icon-ios-pint-outline\";i:447;s:16:\"um-icon-ios-play\";i:448;s:24:\"um-icon-ios-play-outline\";i:449;s:16:\"um-icon-ios-plus\";i:450;s:22:\"um-icon-ios-plus-empty\";i:451;s:24:\"um-icon-ios-plus-outline\";i:452;s:20:\"um-icon-ios-pricetag\";i:453;s:28:\"um-icon-ios-pricetag-outline\";i:454;s:21:\"um-icon-ios-pricetags\";i:455;s:29:\"um-icon-ios-pricetags-outline\";i:456;s:19:\"um-icon-ios-printer\";i:457;s:27:\"um-icon-ios-printer-outline\";i:458;s:17:\"um-icon-ios-pulse\";i:459;s:24:\"um-icon-ios-pulse-strong\";i:460;s:17:\"um-icon-ios-rainy\";i:461;s:25:\"um-icon-ios-rainy-outline\";i:462;s:21:\"um-icon-ios-recording\";i:463;s:29:\"um-icon-ios-recording-outline\";i:464;s:16:\"um-icon-ios-redo\";i:465;s:24:\"um-icon-ios-redo-outline\";i:466;s:19:\"um-icon-ios-refresh\";i:467;s:25:\"um-icon-ios-refresh-empty\";i:468;s:27:\"um-icon-ios-refresh-outline\";i:469;s:18:\"um-icon-ios-reload\";i:470;s:26:\"um-icon-ios-reverse-camera\";i:471;s:34:\"um-icon-ios-reverse-camera-outline\";i:472;s:18:\"um-icon-ios-rewind\";i:473;s:26:\"um-icon-ios-rewind-outline\";i:474;s:16:\"um-icon-ios-rose\";i:475;s:24:\"um-icon-ios-rose-outline\";i:476;s:18:\"um-icon-ios-search\";i:477;s:25:\"um-icon-ios-search-strong\";i:478;s:20:\"um-icon-ios-settings\";i:479;s:27:\"um-icon-ios-settings-strong\";i:480;s:19:\"um-icon-ios-shuffle\";i:481;s:26:\"um-icon-ios-shuffle-strong\";i:482;s:24:\"um-icon-ios-skipbackward\";i:483;s:32:\"um-icon-ios-skipbackward-outline\";i:484;s:23:\"um-icon-ios-skipforward\";i:485;s:31:\"um-icon-ios-skipforward-outline\";i:486;s:17:\"um-icon-ios-snowy\";i:487;s:23:\"um-icon-ios-speedometer\";i:488;s:31:\"um-icon-ios-speedometer-outline\";i:489;s:16:\"um-icon-ios-star\";i:490;s:21:\"um-icon-ios-star-half\";i:491;s:24:\"um-icon-ios-star-outline\";i:492;s:21:\"um-icon-ios-stopwatch\";i:493;s:29:\"um-icon-ios-stopwatch-outline\";i:494;s:17:\"um-icon-ios-sunny\";i:495;s:25:\"um-icon-ios-sunny-outline\";i:496;s:21:\"um-icon-ios-telephone\";i:497;s:29:\"um-icon-ios-telephone-outline\";i:498;s:22:\"um-icon-ios-tennisball\";i:499;s:30:\"um-icon-ios-tennisball-outline\";i:500;s:24:\"um-icon-ios-thunderstorm\";i:501;s:32:\"um-icon-ios-thunderstorm-outline\";i:502;s:16:\"um-icon-ios-time\";i:503;s:24:\"um-icon-ios-time-outline\";i:504;s:17:\"um-icon-ios-timer\";i:505;s:25:\"um-icon-ios-timer-outline\";i:506;s:18:\"um-icon-ios-toggle\";i:507;s:26:\"um-icon-ios-toggle-outline\";i:508;s:17:\"um-icon-ios-trash\";i:509;s:25:\"um-icon-ios-trash-outline\";i:510;s:16:\"um-icon-ios-undo\";i:511;s:24:\"um-icon-ios-undo-outline\";i:512;s:20:\"um-icon-ios-unlocked\";i:513;s:28:\"um-icon-ios-unlocked-outline\";i:514;s:18:\"um-icon-ios-upload\";i:515;s:26:\"um-icon-ios-upload-outline\";i:516;s:20:\"um-icon-ios-videocam\";i:517;s:28:\"um-icon-ios-videocam-outline\";i:518;s:23:\"um-icon-ios-volume-high\";i:519;s:22:\"um-icon-ios-volume-low\";i:520;s:21:\"um-icon-ios-wineglass\";i:521;s:29:\"um-icon-ios-wineglass-outline\";i:522;s:17:\"um-icon-ios-world\";i:523;s:25:\"um-icon-ios-world-outline\";i:524;s:12:\"um-icon-ipad\";i:525;s:14:\"um-icon-iphone\";i:526;s:12:\"um-icon-ipod\";i:527;s:11:\"um-icon-jet\";i:528;s:11:\"um-icon-key\";i:529;s:13:\"um-icon-knife\";i:530;s:14:\"um-icon-laptop\";i:531;s:12:\"um-icon-leaf\";i:532;s:14:\"um-icon-levels\";i:533;s:17:\"um-icon-lightbulb\";i:534;s:12:\"um-icon-link\";i:535;s:14:\"um-icon-load-a\";i:536;s:14:\"um-icon-load-b\";i:537;s:14:\"um-icon-load-c\";i:538;s:14:\"um-icon-load-d\";i:539;s:16:\"um-icon-location\";i:540;s:24:\"um-icon-lock-combination\";i:541;s:14:\"um-icon-locked\";i:542;s:14:\"um-icon-log-in\";i:543;s:15:\"um-icon-log-out\";i:544;s:12:\"um-icon-loop\";i:545;s:14:\"um-icon-magnet\";i:546;s:12:\"um-icon-male\";i:547;s:11:\"um-icon-man\";i:548;s:11:\"um-icon-map\";i:549;s:14:\"um-icon-medkit\";i:550;s:13:\"um-icon-merge\";i:551;s:13:\"um-icon-mic-a\";i:552;s:13:\"um-icon-mic-b\";i:553;s:13:\"um-icon-mic-c\";i:554;s:13:\"um-icon-minus\";i:555;s:21:\"um-icon-minus-circled\";i:556;s:19:\"um-icon-minus-round\";i:557;s:15:\"um-icon-model-s\";i:558;s:15:\"um-icon-monitor\";i:559;s:12:\"um-icon-more\";i:560;s:13:\"um-icon-mouse\";i:561;s:18:\"um-icon-music-note\";i:562;s:15:\"um-icon-navicon\";i:563;s:21:\"um-icon-navicon-round\";i:564;s:16:\"um-icon-navigate\";i:565;s:15:\"um-icon-network\";i:566;s:18:\"um-icon-no-smoking\";i:567;s:15:\"um-icon-nuclear\";i:568;s:14:\"um-icon-outlet\";i:569;s:18:\"um-icon-paintbrush\";i:570;s:19:\"um-icon-paintbucket\";i:571;s:22:\"um-icon-paper-airplane\";i:572;s:17:\"um-icon-paperclip\";i:573;s:13:\"um-icon-pause\";i:574;s:14:\"um-icon-person\";i:575;s:18:\"um-icon-person-add\";i:576;s:22:\"um-icon-person-stalker\";i:577;s:17:\"um-icon-pie-graph\";i:578;s:11:\"um-icon-pin\";i:579;s:16:\"um-icon-pinpoint\";i:580;s:13:\"um-icon-pizza\";i:581;s:13:\"um-icon-plane\";i:582;s:14:\"um-icon-planet\";i:583;s:12:\"um-icon-play\";i:584;s:19:\"um-icon-playstation\";i:585;s:12:\"um-icon-plus\";i:586;s:20:\"um-icon-plus-circled\";i:587;s:18:\"um-icon-plus-round\";i:588;s:14:\"um-icon-podium\";i:589;s:13:\"um-icon-pound\";i:590;s:13:\"um-icon-power\";i:591;s:16:\"um-icon-pricetag\";i:592;s:17:\"um-icon-pricetags\";i:593;s:15:\"um-icon-printer\";i:594;s:20:\"um-icon-pull-request\";i:595;s:18:\"um-icon-qr-scanner\";i:596;s:13:\"um-icon-quote\";i:597;s:19:\"um-icon-radio-waves\";i:598;s:14:\"um-icon-record\";i:599;s:15:\"um-icon-refresh\";i:600;s:13:\"um-icon-reply\";i:601;s:17:\"um-icon-reply-all\";i:602;s:16:\"um-icon-ribbon-a\";i:603;s:16:\"um-icon-ribbon-b\";i:604;s:11:\"um-icon-sad\";i:605;s:19:\"um-icon-sad-outline\";i:606;s:16:\"um-icon-scissors\";i:607;s:14:\"um-icon-search\";i:608;s:16:\"um-icon-settings\";i:609;s:13:\"um-icon-share\";i:610;s:15:\"um-icon-shuffle\";i:611;s:21:\"um-icon-skip-backward\";i:612;s:20:\"um-icon-skip-forward\";i:613;s:22:\"um-icon-social-android\";i:614;s:30:\"um-icon-social-android-outline\";i:615;s:22:\"um-icon-social-angular\";i:616;s:30:\"um-icon-social-angular-outline\";i:617;s:20:\"um-icon-social-apple\";i:618;s:28:\"um-icon-social-apple-outline\";i:619;s:22:\"um-icon-social-bitcoin\";i:620;s:30:\"um-icon-social-bitcoin-outline\";i:621;s:21:\"um-icon-social-buffer\";i:622;s:29:\"um-icon-social-buffer-outline\";i:623;s:21:\"um-icon-social-chrome\";i:624;s:29:\"um-icon-social-chrome-outline\";i:625;s:22:\"um-icon-social-codepen\";i:626;s:30:\"um-icon-social-codepen-outline\";i:627;s:19:\"um-icon-social-css3\";i:628;s:27:\"um-icon-social-css3-outline\";i:629;s:27:\"um-icon-social-designernews\";i:630;s:35:\"um-icon-social-designernews-outline\";i:631;s:23:\"um-icon-social-dribbble\";i:632;s:31:\"um-icon-social-dribbble-outline\";i:633;s:22:\"um-icon-social-dropbox\";i:634;s:30:\"um-icon-social-dropbox-outline\";i:635;s:19:\"um-icon-social-euro\";i:636;s:27:\"um-icon-social-euro-outline\";i:637;s:23:\"um-icon-social-facebook\";i:638;s:31:\"um-icon-social-facebook-outline\";i:639;s:25:\"um-icon-social-foursquare\";i:640;s:33:\"um-icon-social-foursquare-outline\";i:641;s:28:\"um-icon-social-freebsd-devil\";i:642;s:21:\"um-icon-social-github\";i:643;s:29:\"um-icon-social-github-outline\";i:644;s:21:\"um-icon-social-google\";i:645;s:29:\"um-icon-social-google-outline\";i:646;s:25:\"um-icon-social-googleplus\";i:647;s:33:\"um-icon-social-googleplus-outline\";i:648;s:25:\"um-icon-social-hackernews\";i:649;s:33:\"um-icon-social-hackernews-outline\";i:650;s:20:\"um-icon-social-html5\";i:651;s:28:\"um-icon-social-html5-outline\";i:652;s:24:\"um-icon-social-instagram\";i:653;s:32:\"um-icon-social-instagram-outline\";i:654;s:25:\"um-icon-social-javascript\";i:655;s:33:\"um-icon-social-javascript-outline\";i:656;s:23:\"um-icon-social-linkedin\";i:657;s:31:\"um-icon-social-linkedin-outline\";i:658;s:23:\"um-icon-social-markdown\";i:659;s:21:\"um-icon-social-nodejs\";i:660;s:22:\"um-icon-social-octocat\";i:661;s:24:\"um-icon-social-pinterest\";i:662;s:32:\"um-icon-social-pinterest-outline\";i:663;s:21:\"um-icon-social-python\";i:664;s:21:\"um-icon-social-reddit\";i:665;s:29:\"um-icon-social-reddit-outline\";i:666;s:18:\"um-icon-social-rss\";i:667;s:26:\"um-icon-social-rss-outline\";i:668;s:19:\"um-icon-social-sass\";i:669;s:20:\"um-icon-social-skype\";i:670;s:28:\"um-icon-social-skype-outline\";i:671;s:23:\"um-icon-social-snapchat\";i:672;s:31:\"um-icon-social-snapchat-outline\";i:673;s:21:\"um-icon-social-tumblr\";i:674;s:29:\"um-icon-social-tumblr-outline\";i:675;s:18:\"um-icon-social-tux\";i:676;s:21:\"um-icon-social-twitch\";i:677;s:29:\"um-icon-social-twitch-outline\";i:678;s:22:\"um-icon-social-twitter\";i:679;s:30:\"um-icon-social-twitter-outline\";i:680;s:18:\"um-icon-social-usd\";i:681;s:26:\"um-icon-social-usd-outline\";i:682;s:20:\"um-icon-social-vimeo\";i:683;s:28:\"um-icon-social-vimeo-outline\";i:684;s:23:\"um-icon-social-whatsapp\";i:685;s:31:\"um-icon-social-whatsapp-outline\";i:686;s:22:\"um-icon-social-windows\";i:687;s:30:\"um-icon-social-windows-outline\";i:688;s:24:\"um-icon-social-wordpress\";i:689;s:32:\"um-icon-social-wordpress-outline\";i:690;s:20:\"um-icon-social-yahoo\";i:691;s:28:\"um-icon-social-yahoo-outline\";i:692;s:18:\"um-icon-social-yen\";i:693;s:26:\"um-icon-social-yen-outline\";i:694;s:22:\"um-icon-social-youtube\";i:695;s:30:\"um-icon-social-youtube-outline\";i:696;s:16:\"um-icon-soup-can\";i:697;s:24:\"um-icon-soup-can-outline\";i:698;s:20:\"um-icon-speakerphone\";i:699;s:19:\"um-icon-speedometer\";i:700;s:13:\"um-icon-spoon\";i:701;s:12:\"um-icon-star\";i:702;s:18:\"um-icon-stats-bars\";i:703;s:13:\"um-icon-steam\";i:704;s:12:\"um-icon-stop\";i:705;s:19:\"um-icon-thermometer\";i:706;s:18:\"um-icon-thumbsdown\";i:707;s:16:\"um-icon-thumbsup\";i:708;s:14:\"um-icon-toggle\";i:709;s:21:\"um-icon-toggle-filled\";i:710;s:19:\"um-icon-transgender\";i:711;s:15:\"um-icon-trash-a\";i:712;s:15:\"um-icon-trash-b\";i:713;s:14:\"um-icon-trophy\";i:714;s:14:\"um-icon-tshirt\";i:715;s:22:\"um-icon-tshirt-outline\";i:716;s:16:\"um-icon-umbrella\";i:717;s:18:\"um-icon-university\";i:718;s:16:\"um-icon-unlocked\";i:719;s:14:\"um-icon-upload\";i:720;s:11:\"um-icon-usb\";i:721;s:19:\"um-icon-videocamera\";i:722;s:19:\"um-icon-volume-high\";i:723;s:18:\"um-icon-volume-low\";i:724;s:21:\"um-icon-volume-medium\";i:725;s:19:\"um-icon-volume-mute\";i:726;s:12:\"um-icon-wand\";i:727;s:17:\"um-icon-waterdrop\";i:728;s:12:\"um-icon-wifi\";i:729;s:17:\"um-icon-wineglass\";i:730;s:13:\"um-icon-woman\";i:731;s:14:\"um-icon-wrench\";i:732;s:12:\"um-icon-xbox\";i:733;s:21:\"um-faicon-sticky-note\";i:734;s:15:\"um-faicon-glass\";i:735;s:15:\"um-faicon-music\";i:736;s:16:\"um-faicon-search\";i:737;s:20:\"um-faicon-envelope-o\";i:738;s:15:\"um-faicon-heart\";i:739;s:14:\"um-faicon-star\";i:740;s:16:\"um-faicon-star-o\";i:741;s:14:\"um-faicon-user\";i:742;s:14:\"um-faicon-film\";i:743;s:18:\"um-faicon-th-large\";i:744;s:12:\"um-faicon-th\";i:745;s:17:\"um-faicon-th-list\";i:746;s:15:\"um-faicon-check\";i:747;s:15:\"um-faicon-times\";i:748;s:21:\"um-faicon-search-plus\";i:749;s:22:\"um-faicon-search-minus\";i:750;s:19:\"um-faicon-power-off\";i:751;s:16:\"um-faicon-signal\";i:752;s:13:\"um-faicon-cog\";i:753;s:17:\"um-faicon-trash-o\";i:754;s:14:\"um-faicon-home\";i:755;s:16:\"um-faicon-file-o\";i:756;s:17:\"um-faicon-clock-o\";i:757;s:14:\"um-faicon-road\";i:758;s:18:\"um-faicon-download\";i:759;s:29:\"um-faicon-arrow-circle-o-down\";i:760;s:27:\"um-faicon-arrow-circle-o-up\";i:761;s:15:\"um-faicon-inbox\";i:762;s:23:\"um-faicon-play-circle-o\";i:763;s:16:\"um-faicon-repeat\";i:764;s:17:\"um-faicon-refresh\";i:765;s:18:\"um-faicon-list-alt\";i:766;s:14:\"um-faicon-lock\";i:767;s:14:\"um-faicon-flag\";i:768;s:20:\"um-faicon-headphones\";i:769;s:20:\"um-faicon-volume-off\";i:770;s:21:\"um-faicon-volume-down\";i:771;s:19:\"um-faicon-volume-up\";i:772;s:16:\"um-faicon-qrcode\";i:773;s:17:\"um-faicon-barcode\";i:774;s:13:\"um-faicon-tag\";i:775;s:14:\"um-faicon-tags\";i:776;s:14:\"um-faicon-book\";i:777;s:18:\"um-faicon-bookmark\";i:778;s:15:\"um-faicon-print\";i:779;s:16:\"um-faicon-camera\";i:780;s:14:\"um-faicon-font\";i:781;s:14:\"um-faicon-bold\";i:782;s:16:\"um-faicon-italic\";i:783;s:21:\"um-faicon-text-height\";i:784;s:20:\"um-faicon-text-width\";i:785;s:20:\"um-faicon-align-left\";i:786;s:22:\"um-faicon-align-center\";i:787;s:21:\"um-faicon-align-right\";i:788;s:23:\"um-faicon-align-justify\";i:789;s:14:\"um-faicon-list\";i:790;s:17:\"um-faicon-outdent\";i:791;s:16:\"um-faicon-indent\";i:792;s:22:\"um-faicon-video-camera\";i:793;s:19:\"um-faicon-picture-o\";i:794;s:16:\"um-faicon-pencil\";i:795;s:20:\"um-faicon-map-marker\";i:796;s:16:\"um-faicon-adjust\";i:797;s:14:\"um-faicon-tint\";i:798;s:25:\"um-faicon-pencil-square-o\";i:799;s:24:\"um-faicon-share-square-o\";i:800;s:24:\"um-faicon-check-square-o\";i:801;s:16:\"um-faicon-arrows\";i:802;s:23:\"um-faicon-step-backward\";i:803;s:23:\"um-faicon-fast-backward\";i:804;s:18:\"um-faicon-backward\";i:805;s:14:\"um-faicon-play\";i:806;s:15:\"um-faicon-pause\";i:807;s:14:\"um-faicon-stop\";i:808;s:17:\"um-faicon-forward\";i:809;s:22:\"um-faicon-fast-forward\";i:810;s:22:\"um-faicon-step-forward\";i:811;s:15:\"um-faicon-eject\";i:812;s:22:\"um-faicon-chevron-left\";i:813;s:23:\"um-faicon-chevron-right\";i:814;s:21:\"um-faicon-plus-circle\";i:815;s:22:\"um-faicon-minus-circle\";i:816;s:22:\"um-faicon-times-circle\";i:817;s:22:\"um-faicon-check-circle\";i:818;s:25:\"um-faicon-question-circle\";i:819;s:21:\"um-faicon-info-circle\";i:820;s:20:\"um-faicon-crosshairs\";i:821;s:24:\"um-faicon-times-circle-o\";i:822;s:24:\"um-faicon-check-circle-o\";i:823;s:13:\"um-faicon-ban\";i:824;s:20:\"um-faicon-arrow-left\";i:825;s:21:\"um-faicon-arrow-right\";i:826;s:18:\"um-faicon-arrow-up\";i:827;s:20:\"um-faicon-arrow-down\";i:828;s:15:\"um-faicon-share\";i:829;s:16:\"um-faicon-expand\";i:830;s:18:\"um-faicon-compress\";i:831;s:14:\"um-faicon-plus\";i:832;s:15:\"um-faicon-minus\";i:833;s:18:\"um-faicon-asterisk\";i:834;s:28:\"um-faicon-exclamation-circle\";i:835;s:14:\"um-faicon-gift\";i:836;s:14:\"um-faicon-leaf\";i:837;s:14:\"um-faicon-fire\";i:838;s:13:\"um-faicon-eye\";i:839;s:19:\"um-faicon-eye-slash\";i:840;s:30:\"um-faicon-exclamation-triangle\";i:841;s:15:\"um-faicon-plane\";i:842;s:18:\"um-faicon-calendar\";i:843;s:16:\"um-faicon-random\";i:844;s:17:\"um-faicon-comment\";i:845;s:16:\"um-faicon-magnet\";i:846;s:20:\"um-faicon-chevron-up\";i:847;s:22:\"um-faicon-chevron-down\";i:848;s:17:\"um-faicon-retweet\";i:849;s:23:\"um-faicon-shopping-cart\";i:850;s:16:\"um-faicon-folder\";i:851;s:21:\"um-faicon-folder-open\";i:852;s:18:\"um-faicon-arrows-v\";i:853;s:18:\"um-faicon-arrows-h\";i:854;s:19:\"um-faicon-bar-chart\";i:855;s:24:\"um-faicon-twitter-square\";i:856;s:25:\"um-faicon-facebook-square\";i:857;s:22:\"um-faicon-camera-retro\";i:858;s:13:\"um-faicon-key\";i:859;s:14:\"um-faicon-cogs\";i:860;s:18:\"um-faicon-comments\";i:861;s:21:\"um-faicon-thumbs-o-up\";i:862;s:23:\"um-faicon-thumbs-o-down\";i:863;s:19:\"um-faicon-star-half\";i:864;s:17:\"um-faicon-heart-o\";i:865;s:18:\"um-faicon-sign-out\";i:866;s:25:\"um-faicon-linkedin-square\";i:867;s:20:\"um-faicon-thumb-tack\";i:868;s:23:\"um-faicon-external-link\";i:869;s:17:\"um-faicon-sign-in\";i:870;s:16:\"um-faicon-trophy\";i:871;s:23:\"um-faicon-github-square\";i:872;s:16:\"um-faicon-upload\";i:873;s:17:\"um-faicon-lemon-o\";i:874;s:15:\"um-faicon-phone\";i:875;s:18:\"um-faicon-square-o\";i:876;s:20:\"um-faicon-bookmark-o\";i:877;s:22:\"um-faicon-phone-square\";i:878;s:17:\"um-faicon-twitter\";i:879;s:18:\"um-faicon-facebook\";i:880;s:16:\"um-faicon-github\";i:881;s:16:\"um-faicon-unlock\";i:882;s:21:\"um-faicon-credit-card\";i:883;s:13:\"um-faicon-rss\";i:884;s:15:\"um-faicon-hdd-o\";i:885;s:18:\"um-faicon-bullhorn\";i:886;s:14:\"um-faicon-bell\";i:887;s:21:\"um-faicon-certificate\";i:888;s:22:\"um-faicon-hand-o-right\";i:889;s:21:\"um-faicon-hand-o-left\";i:890;s:19:\"um-faicon-hand-o-up\";i:891;s:21:\"um-faicon-hand-o-down\";i:892;s:27:\"um-faicon-arrow-circle-left\";i:893;s:28:\"um-faicon-arrow-circle-right\";i:894;s:25:\"um-faicon-arrow-circle-up\";i:895;s:27:\"um-faicon-arrow-circle-down\";i:896;s:15:\"um-faicon-globe\";i:897;s:16:\"um-faicon-wrench\";i:898;s:15:\"um-faicon-tasks\";i:899;s:16:\"um-faicon-filter\";i:900;s:19:\"um-faicon-briefcase\";i:901;s:20:\"um-faicon-arrows-alt\";i:902;s:15:\"um-faicon-users\";i:903;s:14:\"um-faicon-link\";i:904;s:15:\"um-faicon-cloud\";i:905;s:15:\"um-faicon-flask\";i:906;s:18:\"um-faicon-scissors\";i:907;s:17:\"um-faicon-files-o\";i:908;s:19:\"um-faicon-paperclip\";i:909;s:18:\"um-faicon-floppy-o\";i:910;s:16:\"um-faicon-square\";i:911;s:14:\"um-faicon-bars\";i:912;s:17:\"um-faicon-list-ul\";i:913;s:17:\"um-faicon-list-ol\";i:914;s:23:\"um-faicon-strikethrough\";i:915;s:19:\"um-faicon-underline\";i:916;s:15:\"um-faicon-table\";i:917;s:15:\"um-faicon-magic\";i:918;s:15:\"um-faicon-truck\";i:919;s:19:\"um-faicon-pinterest\";i:920;s:26:\"um-faicon-pinterest-square\";i:921;s:28:\"um-faicon-google-plus-square\";i:922;s:21:\"um-faicon-google-plus\";i:923;s:15:\"um-faicon-money\";i:924;s:20:\"um-faicon-caret-down\";i:925;s:18:\"um-faicon-caret-up\";i:926;s:20:\"um-faicon-caret-left\";i:927;s:21:\"um-faicon-caret-right\";i:928;s:17:\"um-faicon-columns\";i:929;s:14:\"um-faicon-sort\";i:930;s:19:\"um-faicon-sort-desc\";i:931;s:18:\"um-faicon-sort-asc\";i:932;s:18:\"um-faicon-envelope\";i:933;s:18:\"um-faicon-linkedin\";i:934;s:14:\"um-faicon-undo\";i:935;s:15:\"um-faicon-gavel\";i:936;s:20:\"um-faicon-tachometer\";i:937;s:19:\"um-faicon-comment-o\";i:938;s:20:\"um-faicon-comments-o\";i:939;s:14:\"um-faicon-bolt\";i:940;s:17:\"um-faicon-sitemap\";i:941;s:18:\"um-faicon-umbrella\";i:942;s:19:\"um-faicon-clipboard\";i:943;s:21:\"um-faicon-lightbulb-o\";i:944;s:18:\"um-faicon-exchange\";i:945;s:24:\"um-faicon-cloud-download\";i:946;s:22:\"um-faicon-cloud-upload\";i:947;s:17:\"um-faicon-user-md\";i:948;s:21:\"um-faicon-stethoscope\";i:949;s:18:\"um-faicon-suitcase\";i:950;s:16:\"um-faicon-bell-o\";i:951;s:16:\"um-faicon-coffee\";i:952;s:17:\"um-faicon-cutlery\";i:953;s:21:\"um-faicon-file-text-o\";i:954;s:20:\"um-faicon-building-o\";i:955;s:20:\"um-faicon-hospital-o\";i:956;s:19:\"um-faicon-ambulance\";i:957;s:16:\"um-faicon-medkit\";i:958;s:21:\"um-faicon-fighter-jet\";i:959;s:14:\"um-faicon-beer\";i:960;s:18:\"um-faicon-h-square\";i:961;s:21:\"um-faicon-plus-square\";i:962;s:27:\"um-faicon-angle-double-left\";i:963;s:28:\"um-faicon-angle-double-right\";i:964;s:25:\"um-faicon-angle-double-up\";i:965;s:27:\"um-faicon-angle-double-down\";i:966;s:20:\"um-faicon-angle-left\";i:967;s:21:\"um-faicon-angle-right\";i:968;s:18:\"um-faicon-angle-up\";i:969;s:20:\"um-faicon-angle-down\";i:970;s:17:\"um-faicon-desktop\";i:971;s:16:\"um-faicon-laptop\";i:972;s:16:\"um-faicon-tablet\";i:973;s:16:\"um-faicon-mobile\";i:974;s:18:\"um-faicon-circle-o\";i:975;s:20:\"um-faicon-quote-left\";i:976;s:21:\"um-faicon-quote-right\";i:977;s:17:\"um-faicon-spinner\";i:978;s:14:\"um-faicon-spin\";i:979;s:16:\"um-faicon-circle\";i:980;s:15:\"um-faicon-reply\";i:981;s:20:\"um-faicon-github-alt\";i:982;s:18:\"um-faicon-folder-o\";i:983;s:23:\"um-faicon-folder-open-o\";i:984;s:17:\"um-faicon-smile-o\";i:985;s:17:\"um-faicon-frown-o\";i:986;s:15:\"um-faicon-meh-o\";i:987;s:17:\"um-faicon-gamepad\";i:988;s:20:\"um-faicon-keyboard-o\";i:989;s:16:\"um-faicon-flag-o\";i:990;s:24:\"um-faicon-flag-checkered\";i:991;s:18:\"um-faicon-terminal\";i:992;s:14:\"um-faicon-code\";i:993;s:19:\"um-faicon-reply-all\";i:994;s:21:\"um-faicon-star-half-o\";i:995;s:24:\"um-faicon-location-arrow\";i:996;s:14:\"um-faicon-crop\";i:997;s:19:\"um-faicon-code-fork\";i:998;s:22:\"um-faicon-chain-broken\";i:999;s:18:\"um-faicon-question\";i:1000;s:14:\"um-faicon-info\";i:1001;s:21:\"um-faicon-exclamation\";i:1002;s:21:\"um-faicon-superscript\";i:1003;s:19:\"um-faicon-subscript\";i:1004;s:16:\"um-faicon-eraser\";i:1005;s:22:\"um-faicon-puzzle-piece\";i:1006;s:20:\"um-faicon-microphone\";i:1007;s:26:\"um-faicon-microphone-slash\";i:1008;s:16:\"um-faicon-shield\";i:1009;s:20:\"um-faicon-calendar-o\";i:1010;s:27:\"um-faicon-fire-extinguisher\";i:1011;s:16:\"um-faicon-rocket\";i:1012;s:16:\"um-faicon-maxcdn\";i:1013;s:29:\"um-faicon-chevron-circle-left\";i:1014;s:30:\"um-faicon-chevron-circle-right\";i:1015;s:27:\"um-faicon-chevron-circle-up\";i:1016;s:29:\"um-faicon-chevron-circle-down\";i:1017;s:15:\"um-faicon-html5\";i:1018;s:14:\"um-faicon-css3\";i:1019;s:16:\"um-faicon-anchor\";i:1020;s:20:\"um-faicon-unlock-alt\";i:1021;s:18:\"um-faicon-bullseye\";i:1022;s:20:\"um-faicon-ellipsis-h\";i:1023;s:20:\"um-faicon-ellipsis-v\";i:1024;s:20:\"um-faicon-rss-square\";i:1025;s:21:\"um-faicon-play-circle\";i:1026;s:16:\"um-faicon-ticket\";i:1027;s:22:\"um-faicon-minus-square\";i:1028;s:24:\"um-faicon-minus-square-o\";i:1029;s:18:\"um-faicon-level-up\";i:1030;s:20:\"um-faicon-level-down\";i:1031;s:22:\"um-faicon-check-square\";i:1032;s:23:\"um-faicon-pencil-square\";i:1033;s:30:\"um-faicon-external-link-square\";i:1034;s:22:\"um-faicon-share-square\";i:1035;s:17:\"um-faicon-compass\";i:1036;s:29:\"um-faicon-caret-square-o-down\";i:1037;s:27:\"um-faicon-caret-square-o-up\";i:1038;s:30:\"um-faicon-caret-square-o-right\";i:1039;s:13:\"um-faicon-eur\";i:1040;s:13:\"um-faicon-gbp\";i:1041;s:13:\"um-faicon-usd\";i:1042;s:13:\"um-faicon-inr\";i:1043;s:13:\"um-faicon-jpy\";i:1044;s:13:\"um-faicon-rub\";i:1045;s:13:\"um-faicon-krw\";i:1046;s:13:\"um-faicon-btc\";i:1047;s:14:\"um-faicon-file\";i:1048;s:19:\"um-faicon-file-text\";i:1049;s:24:\"um-faicon-sort-alpha-asc\";i:1050;s:25:\"um-faicon-sort-alpha-desc\";i:1051;s:25:\"um-faicon-sort-amount-asc\";i:1052;s:26:\"um-faicon-sort-amount-desc\";i:1053;s:26:\"um-faicon-sort-numeric-asc\";i:1054;s:27:\"um-faicon-sort-numeric-desc\";i:1055;s:19:\"um-faicon-thumbs-up\";i:1056;s:21:\"um-faicon-thumbs-down\";i:1057;s:24:\"um-faicon-youtube-square\";i:1058;s:17:\"um-faicon-youtube\";i:1059;s:14:\"um-faicon-xing\";i:1060;s:21:\"um-faicon-xing-square\";i:1061;s:22:\"um-faicon-youtube-play\";i:1062;s:17:\"um-faicon-dropbox\";i:1063;s:24:\"um-faicon-stack-overflow\";i:1064;s:19:\"um-faicon-instagram\";i:1065;s:16:\"um-faicon-flickr\";i:1066;s:13:\"um-faicon-adn\";i:1067;s:19:\"um-faicon-bitbucket\";i:1068;s:26:\"um-faicon-bitbucket-square\";i:1069;s:16:\"um-faicon-tumblr\";i:1070;s:23:\"um-faicon-tumblr-square\";i:1071;s:25:\"um-faicon-long-arrow-down\";i:1072;s:23:\"um-faicon-long-arrow-up\";i:1073;s:25:\"um-faicon-long-arrow-left\";i:1074;s:26:\"um-faicon-long-arrow-right\";i:1075;s:15:\"um-faicon-apple\";i:1076;s:17:\"um-faicon-windows\";i:1077;s:17:\"um-faicon-android\";i:1078;s:15:\"um-faicon-linux\";i:1079;s:18:\"um-faicon-dribbble\";i:1080;s:15:\"um-faicon-skype\";i:1081;s:20:\"um-faicon-foursquare\";i:1082;s:16:\"um-faicon-trello\";i:1083;s:16:\"um-faicon-female\";i:1084;s:14:\"um-faicon-male\";i:1085;s:16:\"um-faicon-gittip\";i:1086;s:15:\"um-faicon-sun-o\";i:1087;s:16:\"um-faicon-moon-o\";i:1088;s:17:\"um-faicon-archive\";i:1089;s:13:\"um-faicon-bug\";i:1090;s:12:\"um-faicon-vk\";i:1091;s:15:\"um-faicon-weibo\";i:1092;s:16:\"um-faicon-renren\";i:1093;s:19:\"um-faicon-pagelines\";i:1094;s:24:\"um-faicon-stack-exchange\";i:1095;s:30:\"um-faicon-arrow-circle-o-right\";i:1096;s:29:\"um-faicon-arrow-circle-o-left\";i:1097;s:29:\"um-faicon-caret-square-o-left\";i:1098;s:22:\"um-faicon-dot-circle-o\";i:1099;s:20:\"um-faicon-wheelchair\";i:1100;s:22:\"um-faicon-vimeo-square\";i:1101;s:13:\"um-faicon-try\";i:1102;s:23:\"um-faicon-plus-square-o\";i:1103;s:23:\"um-faicon-space-shuttle\";i:1104;s:15:\"um-faicon-slack\";i:1105;s:25:\"um-faicon-envelope-square\";i:1106;s:19:\"um-faicon-wordpress\";i:1107;s:16:\"um-faicon-openid\";i:1108;s:20:\"um-faicon-university\";i:1109;s:24:\"um-faicon-graduation-cap\";i:1110;s:15:\"um-faicon-yahoo\";i:1111;s:16:\"um-faicon-google\";i:1112;s:16:\"um-faicon-reddit\";i:1113;s:23:\"um-faicon-reddit-square\";i:1114;s:28:\"um-faicon-stumbleupon-circle\";i:1115;s:21:\"um-faicon-stumbleupon\";i:1116;s:19:\"um-faicon-delicious\";i:1117;s:14:\"um-faicon-digg\";i:1118;s:20:\"um-faicon-pied-piper\";i:1119;s:24:\"um-faicon-pied-piper-alt\";i:1120;s:16:\"um-faicon-drupal\";i:1121;s:16:\"um-faicon-joomla\";i:1122;s:18:\"um-faicon-language\";i:1123;s:13:\"um-faicon-fax\";i:1124;s:18:\"um-faicon-building\";i:1125;s:15:\"um-faicon-child\";i:1126;s:13:\"um-faicon-paw\";i:1127;s:15:\"um-faicon-spoon\";i:1128;s:14:\"um-faicon-cube\";i:1129;s:15:\"um-faicon-cubes\";i:1130;s:17:\"um-faicon-behance\";i:1131;s:24:\"um-faicon-behance-square\";i:1132;s:15:\"um-faicon-steam\";i:1133;s:22:\"um-faicon-steam-square\";i:1134;s:17:\"um-faicon-recycle\";i:1135;s:13:\"um-faicon-car\";i:1136;s:14:\"um-faicon-taxi\";i:1137;s:14:\"um-faicon-tree\";i:1138;s:17:\"um-faicon-spotify\";i:1139;s:20:\"um-faicon-deviantart\";i:1140;s:20:\"um-faicon-soundcloud\";i:1141;s:18:\"um-faicon-database\";i:1142;s:20:\"um-faicon-file-pdf-o\";i:1143;s:21:\"um-faicon-file-word-o\";i:1144;s:22:\"um-faicon-file-excel-o\";i:1145;s:27:\"um-faicon-file-powerpoint-o\";i:1146;s:22:\"um-faicon-file-image-o\";i:1147;s:24:\"um-faicon-file-archive-o\";i:1148;s:22:\"um-faicon-file-audio-o\";i:1149;s:22:\"um-faicon-file-video-o\";i:1150;s:21:\"um-faicon-file-code-o\";i:1151;s:14:\"um-faicon-vine\";i:1152;s:17:\"um-faicon-codepen\";i:1153;s:18:\"um-faicon-jsfiddle\";i:1154;s:19:\"um-faicon-life-ring\";i:1155;s:24:\"um-faicon-circle-o-notch\";i:1156;s:15:\"um-faicon-rebel\";i:1157;s:16:\"um-faicon-empire\";i:1158;s:20:\"um-faicon-git-square\";i:1159;s:13:\"um-faicon-git\";i:1160;s:21:\"um-faicon-hacker-news\";i:1161;s:23:\"um-faicon-tencent-weibo\";i:1162;s:12:\"um-faicon-qq\";i:1163;s:16:\"um-faicon-weixin\";i:1164;s:21:\"um-faicon-paper-plane\";i:1165;s:23:\"um-faicon-paper-plane-o\";i:1166;s:17:\"um-faicon-history\";i:1167;s:21:\"um-faicon-circle-thin\";i:1168;s:16:\"um-faicon-header\";i:1169;s:19:\"um-faicon-paragraph\";i:1170;s:17:\"um-faicon-sliders\";i:1171;s:19:\"um-faicon-share-alt\";i:1172;s:26:\"um-faicon-share-alt-square\";i:1173;s:14:\"um-faicon-bomb\";i:1174;s:18:\"um-faicon-futbol-o\";i:1175;s:13:\"um-faicon-tty\";i:1176;s:20:\"um-faicon-binoculars\";i:1177;s:14:\"um-faicon-plug\";i:1178;s:20:\"um-faicon-slideshare\";i:1179;s:16:\"um-faicon-twitch\";i:1180;s:14:\"um-faicon-yelp\";i:1181;s:21:\"um-faicon-newspaper-o\";i:1182;s:14:\"um-faicon-wifi\";i:1183;s:20:\"um-faicon-calculator\";i:1184;s:16:\"um-faicon-paypal\";i:1185;s:23:\"um-faicon-google-wallet\";i:1186;s:17:\"um-faicon-cc-visa\";i:1187;s:23:\"um-faicon-cc-mastercard\";i:1188;s:21:\"um-faicon-cc-discover\";i:1189;s:17:\"um-faicon-cc-amex\";i:1190;s:19:\"um-faicon-cc-paypal\";i:1191;s:19:\"um-faicon-cc-stripe\";i:1192;s:20:\"um-faicon-bell-slash\";i:1193;s:22:\"um-faicon-bell-slash-o\";i:1194;s:15:\"um-faicon-trash\";i:1195;s:19:\"um-faicon-copyright\";i:1196;s:12:\"um-faicon-at\";i:1197;s:20:\"um-faicon-eyedropper\";i:1198;s:21:\"um-faicon-paint-brush\";i:1199;s:23:\"um-faicon-birthday-cake\";i:1200;s:20:\"um-faicon-area-chart\";i:1201;s:19:\"um-faicon-pie-chart\";i:1202;s:20:\"um-faicon-line-chart\";i:1203;s:16:\"um-faicon-lastfm\";i:1204;s:23:\"um-faicon-lastfm-square\";i:1205;s:20:\"um-faicon-toggle-off\";i:1206;s:19:\"um-faicon-toggle-on\";i:1207;s:17:\"um-faicon-bicycle\";i:1208;s:13:\"um-faicon-bus\";i:1209;s:17:\"um-faicon-ioxhost\";i:1210;s:19:\"um-faicon-angellist\";i:1211;s:12:\"um-faicon-cc\";i:1212;s:13:\"um-faicon-ils\";i:1213;s:18:\"um-faicon-meanpath\";i:1214;s:14:\"um-faicon-spin\";i:1215;s:14:\"um-faicon-spin\";i:1216;s:14:\"um-faicon-spin\";i:1217;s:14:\"um-faicon-spin\";i:1218;s:14:\"um-faicon-spin\";}','yes'),(178723,'rs-templates-counter','0','no'),(381150,'_transient_adf0381f0_custom_js','','yes'),(381151,'_transient_adf0381f0_updated_at','1605059632','yes'),(374159,'_transient_9dd626292_custom_js','','yes'),(374160,'_transient_9dd626292_updated_at','1603149173','yes'),(1293993,'adcaef842_eael_updated_at','1651360580','no'),(399783,'_transient_e05627be6_elements','a:0:{}','yes'),(399784,'_transient_e05627be6_custom_js','','yes'),(399785,'_transient_e05627be6_updated_at','1605059632','yes'),(387053,'_transient_30e044aef_elements','a:0:{}','yes'),(387054,'_transient_30e044aef_custom_js','','yes'),(387055,'_transient_30e044aef_updated_at','1605059632','yes'),(418215,'a4e475ec8_elements','a:0:{}','yes'),(418216,'a4e475ec8_custom_js','','yes'),(418217,'a4e475ec8_updated_at','1618609366','yes'),(418268,'f0d06e05d_elements','a:0:{}','yes'),(418269,'f0d06e05d_custom_js','','yes'),(418270,'f0d06e05d_updated_at','1623201995','yes'),(1251014,'wp_force_deactivated_plugins','a:0:{}','yes'),(383787,'_transient_c10ce2b83_elements','a:0:{}','yes'),(383788,'_transient_c10ce2b83_custom_js','','yes'),(383789,'_transient_c10ce2b83_updated_at','1605059632','yes'),(383364,'_transient_dfcc4860c_elements','a:0:{}','yes'),(383365,'_transient_dfcc4860c_custom_js','','yes'),(383366,'_transient_dfcc4860c_updated_at','1605059632','yes'),(391509,'_transient_a4e475ec8_custom_js','','yes'),(391510,'_transient_a4e475ec8_updated_at','1605059632','yes'),(391539,'_transient_4de584a71_elements','a:0:{}','yes'),(391540,'_transient_4de584a71_custom_js','','yes'),(391541,'_transient_4de584a71_updated_at','1605059632','yes'),(348589,'weforms_dismiss_xnotice_cf7','yes','yes'),(348592,'weforms_allow_tracking','no','yes'),(348593,'weforms_tracking_notice','hide','yes'),(348591,'dnh_dismissed_notices','a:1:{i:0;s:24:\"wrm_9ed381f79cf0394bc396\";}','yes'),(358701,'_transient_5ca089a46_elements','a:0:{}','yes'),(358702,'_transient_5ca089a46_custom_js','','yes'),(358703,'_transient_5ca089a46_updated_at','1605059632','yes'),(358885,'_transient_20a685068_elements','a:0:{}','yes'),(358886,'_transient_20a685068_custom_js','','yes'),(358887,'_transient_20a685068_updated_at','1605059632','yes'),(358908,'_transient_7048c361d_elements','a:0:{}','yes'),(358909,'_transient_7048c361d_custom_js','','yes'),(358910,'_transient_7048c361d_updated_at','1605059632','yes'),(357202,'_transient_e3ea26802_elements','a:0:{}','yes'),(357203,'_transient_e3ea26802_custom_js','','yes'),(357204,'_transient_e3ea26802_updated_at','1605059632','yes'),(357218,'_transient_7e2349df4_elements','a:0:{}','yes'),(357219,'_transient_7e2349df4_custom_js','','yes'),(357220,'_transient_7e2349df4_updated_at','1605059632','yes'),(357231,'_transient_c48e43b4d_elements','a:0:{}','yes'),(357232,'_transient_c48e43b4d_custom_js','','yes'),(357233,'_transient_c48e43b4d_updated_at','1605059632','yes'),(357245,'_transient_fe2715a97_elements','a:0:{}','yes'),(357242,'_transient_a7f8a4f29_elements','a:0:{}','yes'),(357243,'_transient_a7f8a4f29_custom_js','','yes'),(357244,'_transient_a7f8a4f29_updated_at','1605059632','yes'),(357246,'_transient_fe2715a97_custom_js','','yes'),(357247,'_transient_fe2715a97_updated_at','1605059632','yes'),(357249,'_transient_de8718817_elements','a:0:{}','yes'),(357250,'_transient_de8718817_custom_js','','yes'),(357251,'_transient_de8718817_updated_at','1605059632','yes'),(357260,'_transient_221857113_elements','a:0:{}','yes'),(357261,'_transient_221857113_custom_js','','yes'),(357262,'_transient_221857113_updated_at','1605059632','yes'),(357323,'_transient_5c7179c35_elements','a:0:{}','yes'),(422779,'0f0b6552d_updated_at','1623201995','yes'),(447590,'6f3b521a0_elements','a:0:{}','yes'),(447591,'6f3b521a0_custom_js','','yes'),(447592,'6f3b521a0_updated_at','1606787969','yes'),(392405,'_transient_25903d02b_elements','a:0:{}','yes'),(392406,'_transient_25903d02b_custom_js','','yes'),(392407,'_transient_25903d02b_updated_at','1605059632','yes'),(392410,'_transient_ad8567137_elements','a:0:{}','yes'),(392411,'_transient_ad8567137_custom_js','','yes'),(392412,'_transient_ad8567137_updated_at','1605059632','yes'),(391652,'_transient_c06ccb403_elements','a:0:{}','yes'),(391653,'_transient_c06ccb403_custom_js','','yes'),(391654,'_transient_c06ccb403_updated_at','1605059632','yes'),(391669,'_transient_f3b802a93_elements','a:0:{}','yes'),(391670,'_transient_f3b802a93_custom_js','','yes'),(391671,'_transient_f3b802a93_updated_at','1605059632','yes'),(391673,'_transient_826b6ef51_elements','a:0:{}','yes'),(391674,'_transient_826b6ef51_custom_js','','yes'),(391675,'_transient_826b6ef51_updated_at','1605059632','yes'),(1352083,'06a943c59_eael_updated_at','1656030088','no'),(357601,'_transient_7d8ec2300_elements','a:0:{}','yes'),(357602,'_transient_7d8ec2300_custom_js','','yes'),(357603,'_transient_7d8ec2300_updated_at','1605059632','yes'),(360332,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1602987008;}s:5:\"queue\";a:0:{}s:4:\"done\";a:2:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1602987008;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1603148857;}i:1;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1603591808;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1605056684;}}}','no'),(356983,'_transient_d2395827e_elements','a:0:{}','yes'),(356984,'_transient_d2395827e_custom_js','','yes'),(356985,'_transient_d2395827e_updated_at','1605059632','yes'),(357722,'_transient_864b10d54_updated_at','1605059632','yes'),(360681,'WpFastestCacheExclude','[{\"prefix\":\"startwith\",\"content\":\"the-lantern-team\\/team-portal\",\"type\":\"page\"}]','yes'),(362699,'_transient_9583082da_custom_js','','yes'),(362700,'_transient_9583082da_updated_at','1605059632','yes'),(362715,'_transient_bac6998bf_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362716,'_transient_bac6998bf_custom_js','','yes'),(362717,'_transient_bac6998bf_updated_at','1605059632','yes'),(368743,'_transient_b5c646fb3_elements','a:0:{}','yes'),(368744,'_transient_b5c646fb3_custom_js','','yes'),(368745,'_transient_b5c646fb3_updated_at','1605059632','yes'),(367376,'_transient_150f96911_elements','a:0:{}','yes'),(367377,'_transient_150f96911_custom_js','','yes'),(367378,'_transient_150f96911_updated_at','1605059632','yes'),(392316,'_transient_8adc01ba4_elements','a:0:{}','yes'),(392317,'_transient_8adc01ba4_custom_js','','yes'),(392318,'_transient_8adc01ba4_updated_at','1605059632','yes'),(361941,'calendar_feed_children','a:0:{}','yes'),(361942,'calendar_type_children','a:0:{}','yes'),(361943,'simple-calendar_admin_notices','a:0:{}','yes'),(361784,'_transient_f1ceaa13d_elements','a:0:{}','yes'),(361785,'_transient_f1ceaa13d_custom_js','','yes'),(361786,'_transient_f1ceaa13d_updated_at','1605059632','yes'),(230693,'_transient_jetpack_assumed_site_creation_date','2018-08-20 00:26:23','yes'),(659478,'_elementor_global_css','a:6:{s:4:\"time\";i:1651343443;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(361924,'simple-calendar_version','3.1.36','yes'),(361933,'simple-calendar_settings_feeds','a:1:{s:6:\"google\";a:1:{s:7:\"api_key\";s:39:\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\";}}','yes'),(231016,'analyst_accounts_data','s:436:\"O:26:\"Account\\AccountDataFactory\":1:{s:11:\"\0*\0accounts\";a:1:{i:0;O:19:\"Account\\AccountData\":7:{s:5:\"\0*\0id\";s:16:\"ao6grd4ed38kyeqz\";s:9:\"\0*\0secret\";s:40:\"ae93c43c738bdf50f10ef9d4c6d811006b468c74\";s:7:\"\0*\0path\";s:110:\"/home/lanternrealty/public_html/wp-content/plugins/ultimate-social-media-icons/ultimate_social_media_icons.php\";s:14:\"\0*\0isInstalled\";b:0;s:12:\"\0*\0isOptedIn\";b:1;s:11:\"\0*\0isSigned\";b:1;s:20:\"\0*\0isInstallResolved\";b:1;}}}\";','yes'),(231013,'sfsi_pplus_error_reporting_notice_dismissed','1','yes'),(231007,'widget_sfsi-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(352374,'jp_sync_lock_full_sync','1602540922.9681','yes'),(230767,'social_notifications_subscribe','off','yes'),(351599,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1656028699;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(360062,'_transient_2ceb0fa53_elements','a:0:{}','yes'),(360063,'_transient_2ceb0fa53_custom_js','','yes'),(360064,'_transient_2ceb0fa53_updated_at','1602812385','yes'),(356956,'_transient_a9129074b_elements','a:0:{}','yes'),(358633,'_transient_c770c6640_elements','a:0:{}','yes'),(358634,'_transient_c770c6640_custom_js','','yes'),(358635,'_transient_c770c6640_updated_at','1605059632','yes'),(358639,'_transient_40e4f8434_elements','a:0:{}','yes'),(358640,'_transient_40e4f8434_custom_js','','yes'),(358641,'_transient_40e4f8434_updated_at','1605059632','yes'),(358645,'_transient_805f23b92_elements','a:0:{}','yes'),(358646,'_transient_805f23b92_custom_js','','yes'),(358647,'_transient_805f23b92_updated_at','1605059632','yes'),(358648,'_transient_3308184bd_elements','a:0:{}','yes'),(358649,'_transient_3308184bd_custom_js','','yes'),(358650,'_transient_3308184bd_updated_at','1605059632','yes'),(358652,'_transient_4e7a1c7ea_elements','a:0:{}','yes'),(358653,'_transient_4e7a1c7ea_custom_js','','yes'),(358654,'_transient_4e7a1c7ea_updated_at','1605059632','yes'),(358655,'_transient_17aafa3d4_elements','a:0:{}','yes'),(358656,'_transient_17aafa3d4_custom_js','','yes'),(358657,'_transient_17aafa3d4_updated_at','1605059632','yes'),(358658,'_transient_a526777a9_elements','a:0:{}','yes'),(358659,'_transient_a526777a9_custom_js','','yes'),(358660,'_transient_a526777a9_updated_at','1605059632','yes'),(358661,'_transient_b0ff3698b_elements','a:0:{}','yes'),(358662,'_transient_b0ff3698b_custom_js','','yes'),(358663,'_transient_b0ff3698b_updated_at','1605059632','yes'),(358664,'_transient_e618c66d7_elements','a:0:{}','yes'),(358665,'_transient_e618c66d7_custom_js','','yes'),(358666,'_transient_e618c66d7_updated_at','1605059632','yes'),(358673,'_transient_d1691ca49_elements','a:0:{}','yes'),(358669,'_transient_89957ff7e_elements','a:0:{}','yes'),(358670,'_transient_89957ff7e_custom_js','','yes'),(358671,'_transient_89957ff7e_updated_at','1605059632','yes'),(358674,'_transient_d1691ca49_custom_js','','yes'),(358675,'_transient_d1691ca49_updated_at','1605059632','yes'),(358678,'_transient_7d742eaab_elements','a:0:{}','yes'),(358679,'_transient_7d742eaab_custom_js','','yes'),(358680,'_transient_7d742eaab_updated_at','1605059632','yes'),(358448,'_transient_4e74b0140_custom_js','','yes'),(352328,'jetpack_constants_sync_checksum','a:20:{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:2119638798;s:14:\"WP_CONTENT_DIR\";i:740604602;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:1646442005;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:481110059;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:2267546353;s:8:\"WP_DEBUG\";i:734881840;}','yes'),(352329,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:5:\"https\";}','yes'),(352330,'jetpack_sync_https_history_site_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),(352331,'jetpack_sync_https_history_home_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),(356957,'_transient_a9129074b_custom_js','','yes'),(356958,'_transient_a9129074b_updated_at','1605059632','yes'),(356954,'_transient_06c77cc06_custom_js','','yes'),(356955,'_transient_06c77cc06_updated_at','1605059632','yes'),(356915,'_transient_5203dc641_elements','a:0:{}','yes'),(356903,'_transient_deb76819b_elements','a:0:{}','yes'),(356904,'_transient_deb76819b_custom_js','','yes'),(356905,'_transient_deb76819b_updated_at','1605059632','yes'),(356906,'_transient_9912fbded_elements','a:0:{}','yes'),(356907,'_transient_9912fbded_custom_js','','yes'),(356908,'_transient_9912fbded_updated_at','1605059632','yes'),(356916,'_transient_5203dc641_custom_js','','yes'),(356917,'_transient_5203dc641_updated_at','1605059632','yes'),(356922,'password_protected_version','2.3','yes'),(356953,'_transient_06c77cc06_elements','a:0:{}','yes'),(357721,'_transient_864b10d54_custom_js','','yes'),(356934,'wpins_block_notice','a:1:{s:25:\"essential_adons_elementor\";s:25:\"essential_adons_elementor\";}','yes'),(348497,'erp_acct_new_ledgers','1','yes'),(348547,'weforms_settings','a:6:{s:13:\"email_gateway\";s:9:\"wordpress\";s:6:\"credit\";b:0;s:12:\"email_footer\";b:1;s:9:\"recaptcha\";O:8:\"stdClass\":3:{s:3:\"key\";s:40:\"6LfXgNYZAAAAAOBEx0Em2yCeUBlEsFZP8aiFC1g2\";s:6:\"secret\";s:40:\"6LfXgNYZAAAAAOsnMaO1YC_KYp-dqH8aR9bu1BJ1\";s:4:\"type\";s:2:\"v2\";}s:10:\"permission\";s:14:\"manage_options\";s:8:\"gateways\";O:8:\"stdClass\":3:{s:8:\"sendgrid\";s:0:\"\";s:7:\"mailgun\";s:0:\"\";s:9:\"sparkpost\";s:0:\"\";}}','yes'),(348523,'pm_version','2.4.4','yes'),(348524,'pm_installed','1602350232','yes'),(348527,'include_project_manager','yes','yes'),(348495,'erp_modules','a:3:{s:3:\"hrm\";a:5:{s:5:\"title\";s:13:\"HR Management\";s:4:\"slug\";s:7:\"erp-hrm\";s:11:\"description\";s:25:\"Human Resource Management\";s:8:\"callback\";s:30:\"\\WeDevs\\ERP\\HRM\\Human_Resource\";s:7:\"modules\";a:0:{}}s:3:\"crm\";a:5:{s:5:\"title\";s:13:\"CR Management\";s:4:\"slug\";s:7:\"erp-crm\";s:11:\"description\";s:32:\"Customer Relationship Management\";s:8:\"callback\";s:37:\"\\WeDevs\\ERP\\CRM\\Customer_Relationship\";s:7:\"modules\";a:0:{}}s:10:\"accounting\";a:5:{s:5:\"title\";s:10:\"Accounting\";s:4:\"slug\";s:14:\"erp-accounting\";s:11:\"description\";s:21:\"Accounting Management\";s:8:\"callback\";s:33:\"\\WeDevs\\ERP\\Accounting\\Accounting\";s:7:\"modules\";a:0:{}}}','yes'),(357646,'_transient_b04ed28d2_elements','a:0:{}','yes'),(357647,'_transient_b04ed28d2_custom_js','','yes'),(357648,'_transient_b04ed28d2_updated_at','1605059632','yes'),(357678,'_transient_ca1a7ef6b_elements','a:0:{}','yes'),(357679,'_transient_ca1a7ef6b_custom_js','','yes'),(357680,'_transient_ca1a7ef6b_updated_at','1605059632','yes'),(357720,'_transient_864b10d54_elements','a:0:{}','yes'),(357545,'_transient_fc29b96a2_elements','a:0:{}','yes'),(357546,'_transient_fc29b96a2_custom_js','','yes'),(357547,'_transient_fc29b96a2_updated_at','1605059632','yes'),(357554,'_transient_c4ff536a2_elements','a:0:{}','yes'),(357555,'_transient_c4ff536a2_custom_js','','yes'),(357556,'_transient_c4ff536a2_updated_at','1605059632','yes'),(357502,'_transient_6c90b6c76_updated_at','1603149173','yes'),(357510,'_transient_6f1631f5e_elements','a:0:{}','yes'),(357511,'_transient_6f1631f5e_custom_js','','yes'),(357512,'_transient_6f1631f5e_updated_at','1605059632','yes'),(357522,'_transient_adfeb3ea3_elements','a:0:{}','yes'),(357523,'_transient_adfeb3ea3_custom_js','','yes'),(357524,'_transient_adfeb3ea3_updated_at','1605059632','yes'),(357532,'_transient_86f139116_elements','a:0:{}','yes'),(357533,'_transient_86f139116_custom_js','','yes'),(357534,'_transient_86f139116_updated_at','1605059632','yes'),(363068,'_transient_ac607990c_elements','a:0:{}','yes'),(363069,'_transient_ac607990c_custom_js','','yes'),(363070,'_transient_ac607990c_updated_at','1603074420','yes'),(360044,'_transient_2d067a2d6_elements','a:0:{}','yes'),(360045,'_transient_2d067a2d6_custom_js','','yes'),(360046,'_transient_2d067a2d6_updated_at','1602812385','yes'),(318761,'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'),(318762,'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'),(318763,'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'),(318764,'elementor_active_kit','755','yes'),(318769,'elementor_log','a:32:{s:32:\"3a473c520d147aea5ac6d73fe0b396f6\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:2:\"17\";s:7:\"\0*\0file\";s:70:\"https://lantern-realty.com/wp-admin/post.php?post=753&action=elementor\";s:7:\"\0*\0line\";s:1:\"5\";s:7:\"\0*\0date\";s:19:\"2020-09-19 18:33:52\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:34:\"Unexpected token \\&#039;var\\&#039;\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:109;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2020-10-18 23:13:44\";i:1;s:19:\"2020-10-18 23:13:58\";i:2;s:19:\"2020-10-18 23:14:03\";i:3;s:19:\"2020-10-18 23:14:08\";i:4;s:19:\"2020-10-18 23:14:20\";i:5;s:19:\"2020-10-18 23:14:48\";i:6;s:19:\"2020-10-18 23:15:01\";i:7;s:19:\"2020-10-18 23:15:07\";i:8;s:19:\"2020-10-18 23:15:14\";i:9;s:19:\"2020-10-18 23:46:56\";i:10;s:19:\"2020-10-19 00:04:49\";i:11;s:19:\"2020-10-19 00:58:22\";i:12;s:19:\"2020-10-19 00:58:27\";i:13;s:19:\"2020-10-19 00:58:30\";i:14;s:19:\"2020-10-19 00:58:34\";i:15;s:19:\"2020-10-19 01:00:59\";i:16;s:19:\"2020-10-19 01:04:01\";i:17;s:19:\"2020-10-19 01:05:36\";i:18;s:19:\"2020-10-19 01:05:42\";i:19;s:19:\"2020-10-19 01:05:46\";i:20;s:19:\"2020-10-19 01:08:55\";i:21;s:19:\"2020-10-19 01:10:33\";i:22;s:19:\"2020-10-19 01:10:33\";i:23;s:19:\"2020-10-19 01:10:33\";i:24;s:19:\"2020-10-19 01:10:33\";i:25;s:19:\"2020-10-19 01:10:33\";i:26;s:19:\"2020-10-19 01:10:33\";i:27;s:19:\"2020-10-19 02:17:16\";i:28;s:19:\"2020-10-19 02:17:22\";i:29;s:19:\"2020-10-19 02:20:03\";i:30;s:19:\"2020-10-19 02:20:07\";i:31;s:19:\"2020-10-19 02:20:16\";i:32;s:19:\"2020-10-19 02:20:25\";i:33;s:19:\"2020-10-19 02:20:40\";i:34;s:19:\"2020-10-19 02:20:46\";i:35;s:19:\"2020-11-11 01:52:41\";i:36;s:19:\"2021-02-16 00:51:45\";i:37;s:19:\"2021-02-16 00:51:45\";i:38;s:19:\"2021-02-16 00:51:45\";i:39;s:19:\"2021-02-16 00:51:45\";i:40;s:19:\"2021-02-16 00:51:46\";i:41;s:19:\"2021-02-16 00:51:46\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1600540432\";s:7:\"message\";s:24:\"Unexpected token \\\'var\\\'\";s:3:\"url\";s:70:\"https://lantern-realty.com/wp-admin/post.php?post=753&action=elementor\";s:4:\"line\";s:1:\"5\";s:6:\"column\";s:2:\"17\";}}s:32:\"6dbdf3bfe7551c08fdf981437685cf24\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.0.9\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:28\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.0.9\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"44b0132801f9f7291f65bf819a5169bf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"7725e9344833c471c889428962e969e3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"51a6a16a5637156e011db3ac3e5d3987\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"fa9cea6c12094c95aca135f35a135fb3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"25059b0e78af06314aef84df0aa84f56\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"f37533978c1fb855857dfb77e23b0024\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:61:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:61:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"a91e6bd2e78a2ca3d41bf65c1e909ecb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"5e32fb7f8ea81ccdc03e78139bd89bc0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"78463f36e8106ebd3ac64f38759bbc4c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:69:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:69:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"370698e891cab41a87a9a7029de05d63\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:73:\"Elementor/Upgrades - _v_3_0_5_re_move_space_between_widgets_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:73:\"Elementor/Upgrades - _v_3_0_5_re_move_space_between_widgets_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"34714cd1fe488335ffc9caa8a16244e2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:75:\"Elementor/Upgrades - _v_3_0_5_re_move_space_between_widgets_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:75:\"Elementor/Upgrades - _v_3_0_5_re_move_space_between_widgets_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"aa064acdd86d89bf09842a8a797c9c2c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-09-20 16:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.0.9\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-09-20 16:05:29\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.0.9\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"370f378bfed8ed45b82861024e58b755\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"196225\";s:7:\"\0*\0file\";s:79:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js\";s:7:\"\0*\0line\";s:2:\"31\";s:7:\"\0*\0date\";s:19:\"2020-09-20 20:18:17\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:73:\"Elementor panel doesn\\&#039;t have page named \\&#039;page_settings\\&#039;\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2020-09-20 20:18:17\";i:1;s:19:\"2020-09-20 20:18:22\";i:2;s:19:\"2020-09-20 20:18:38\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1600633097\";s:7:\"message\";s:58:\"Elementor panel doesn\\\'t have page named \\\'page_settings\\\'\";s:3:\"url\";s:79:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js\";s:4:\"line\";s:2:\"31\";s:6:\"column\";s:6:\"196225\";}}s:32:\"5b57413389aa43f5f1bf0ca72f9a05aa\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"60285\";s:7:\"\0*\0file\";s:89:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2020-10-11 17:10:47\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:58:\"Cannot read property \\&#039;attributes\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-10-11 17:10:47\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1602436247\";s:7:\"message\";s:48:\"Cannot read property \\\'attributes\\\' of undefined\";s:3:\"url\";s:89:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"60285\";}}s:32:\"81e919f591c8ca98d420eb6e2693b8ab\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"466338\";s:7:\"\0*\0file\";s:79:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2020-10-11 18:49:06\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:52:\"Cannot read property \\&#039;html\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2020-10-11 18:49:06\";i:1;s:19:\"2020-10-12 13:31:59\";i:2;s:19:\"2020-10-18 15:18:14\";i:3;s:19:\"2020-10-18 17:42:15\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1602442146\";s:7:\"message\";s:42:\"Cannot read property \\\'html\\\' of undefined\";s:3:\"url\";s:79:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"466338\";}}s:32:\"92b47fcd00c79606f61e99206191d20f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-10-12 22:00:58\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.0.9\";s:2:\"to\";s:6:\"3.0.11\";}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2020-10-12 22:00:58\";i:1;s:19:\"2020-10-12 22:00:58\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.0.9\";s:2:\"to\";s:6:\"3.0.11\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fcdab03ff8ad5da601bdfe0335ed5853\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"230117\";s:7:\"\0*\0file\";s:104:\"https://lantern-realty.com/wp-content/uploads/essential-addons-elementor/c43766651.min.js?ver=1603033795\";s:7:\"\0*\0line\";s:2:\"10\";s:7:\"\0*\0date\";s:19:\"2020-10-18 15:24:33\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:52:\"Cannot read property \\&#039;cloneNode\\&#039; of null\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-10-18 15:24:33\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1603034673\";s:7:\"message\";s:42:\"Cannot read property \\\'cloneNode\\\' of null\";s:3:\"url\";s:104:\"https://lantern-realty.com/wp-content/uploads/essential-addons-elementor/c43766651.min.js?ver=1603033795\";s:4:\"line\";s:2:\"10\";s:6:\"column\";s:6:\"230117\";}}s:32:\"c5d475c48d805e0cb830d0a976375544\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"465432\";s:7:\"\0*\0file\";s:90:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.0.11\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2020-10-19 00:01:24\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:52:\"Cannot read property \\&#039;menu\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2020-10-19 00:01:24\";i:1;s:19:\"2021-02-24 00:26:58\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1603065684\";s:7:\"message\";s:42:\"Cannot read property \\\'menu\\\' of undefined\";s:3:\"url\";s:90:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.0.11\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"465432\";}}s:32:\"d7976bd332174459bbd23170cda76a5c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-12-01 01:59:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.11\";s:2:\"to\";s:6:\"3.0.14\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-12-01 01:59:13\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.11\";s:2:\"to\";s:6:\"3.0.14\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"0a9a20e5cbb783a46e4a764ca59bd86b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-02-23 23:55:00\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.14\";s:2:\"to\";s:5:\"3.1.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-02-23 23:55:00\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.14\";s:2:\"to\";s:5:\"3.1.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c68aaf02cf1fcb8a3b4f49abaa59e7cd\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"253674\";s:7:\"\0*\0file\";s:104:\"https://lantern-realty.com/wp-content/uploads/essential-addons-elementor/9224d70ff.min.js?ver=1618359746\";s:7:\"\0*\0line\";s:2:\"10\";s:7:\"\0*\0date\";s:19:\"2021-04-14 00:24:39\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:61:\"Cannot read property \\&#039;querySelector\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2021-04-14 00:24:39\";i:1;s:19:\"2021-04-14 00:24:49\";i:2;s:19:\"2021-04-14 00:24:53\";i:3;s:19:\"2021-04-14 00:24:56\";i:4;s:19:\"2021-04-14 00:25:08\";i:5;s:19:\"2021-04-14 00:26:37\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1618359879\";s:7:\"message\";s:51:\"Cannot read property \\\'querySelector\\\' of undefined\";s:3:\"url\";s:104:\"https://lantern-realty.com/wp-content/uploads/essential-addons-elementor/9224d70ff.min.js?ver=1618359746\";s:4:\"line\";s:2:\"10\";s:6:\"column\";s:6:\"253674\";}}s:32:\"f988327bc57aa3a970608f3cc20cdea7\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"35000\";s:7:\"\0*\0file\";s:97:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=3.1.1\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2021-04-14 00:40:54\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:54:\"Cannot read property \\&#039;global\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:8;s:14:\"\0*\0times_dates\";a:8:{i:0;s:19:\"2021-04-14 00:40:54\";i:1;s:19:\"2021-04-14 00:41:20\";i:2;s:19:\"2021-04-14 00:42:31\";i:3;s:19:\"2021-04-14 00:42:41\";i:4;s:19:\"2021-04-14 00:43:05\";i:5;s:19:\"2021-04-14 00:43:11\";i:6;s:19:\"2021-04-14 00:43:17\";i:7;s:19:\"2021-04-14 00:45:07\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1618360854\";s:7:\"message\";s:44:\"Cannot read property \\\'global\\\' of undefined\";s:3:\"url\";s:97:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=3.1.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"35000\";}}s:32:\"419d0447784070d1c050c67bf592480a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:29\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d790e262da51d5088b4f199231e47631\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"3b0255b0cc0ff8d13bb18c72c83d0967\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"47505f5d6ba5a80eea320ad038597324\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"497ab457040e68791970ce897978f68c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:30\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"1d2fe2cf29e8773ff2d7b8043ba5ab90\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-01 02:05:32\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-01 02:05:32\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.2.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"85290d61da92b16515f24b834f66f5fb\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"251467\";s:7:\"\0*\0file\";s:89:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.5.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-04-20 01:56:05\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:64:\"Cannot read properties of undefined (reading \\&#039;menu\\&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2022-04-20 01:56:05\";i:1;s:19:\"2022-05-26 01:10:14\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1650419765\";s:7:\"message\";s:54:\"Cannot read properties of undefined (reading \\\'menu\\\')\";s:3:\"url\";s:89:\"https://lantern-realty.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.5.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"251467\";}}s:32:\"de37ef35317ebd119cfa952311f9f251\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:94:\"/home/lanternrealty/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:7:\"\0*\0line\";i:301;s:7:\"\0*\0date\";s:19:\"2022-04-30 16:28:13\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:165249;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2022-07-10 21:17:35\";i:1;s:19:\"2022-07-10 21:18:27\";i:2;s:19:\"2022-07-10 21:22:16\";i:3;s:19:\"2022-07-10 21:24:56\";i:4;s:19:\"2022-07-10 21:27:08\";i:5;s:19:\"2022-07-10 21:29:38\";i:6;s:19:\"2022-07-10 21:30:15\";i:7;s:19:\"2022-07-10 21:31:26\";i:8;s:19:\"2022-07-10 21:35:30\";i:9;s:19:\"2022-07-10 21:35:36\";i:10;s:19:\"2022-07-10 21:37:06\";i:11;s:19:\"2022-07-10 21:38:07\";i:12;s:19:\"2022-07-10 21:38:18\";i:13;s:19:\"2022-07-10 21:40:08\";i:14;s:19:\"2022-07-10 21:41:30\";i:15;s:19:\"2022-07-10 21:44:09\";i:16;s:19:\"2022-07-10 21:44:59\";i:17;s:19:\"2022-07-10 21:45:42\";i:18;s:19:\"2022-07-10 21:47:08\";i:19;s:19:\"2022-07-10 21:48:05\";i:20;s:19:\"2022-07-10 21:48:41\";i:21;s:19:\"2022-07-10 21:51:36\";i:22;s:19:\"2022-07-10 21:51:43\";i:23;s:19:\"2022-07-10 21:52:46\";i:24;s:19:\"2022-07-10 21:54:02\";i:25;s:19:\"2022-07-10 21:55:02\";i:26;s:19:\"2022-07-10 21:58:24\";i:27;s:19:\"2022-07-10 21:58:49\";i:28;s:19:\"2022-07-10 22:00:50\";i:29;s:19:\"2022-07-10 22:02:08\";i:30;s:19:\"2022-07-10 22:02:12\";i:31;s:19:\"2022-07-10 22:02:17\";i:32;s:19:\"2022-07-10 22:02:24\";i:33;s:19:\"2022-07-10 22:02:25\";i:34;s:19:\"2022-07-10 22:02:29\";i:35;s:19:\"2022-07-10 22:02:32\";i:36;s:19:\"2022-07-10 22:02:35\";i:37;s:19:\"2022-07-10 22:02:38\";i:38;s:19:\"2022-07-10 22:04:03\";i:39;s:19:\"2022-07-10 22:06:03\";i:40;s:19:\"2022-07-10 22:07:46\";i:41;s:19:\"2022-07-10 22:07:59\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:59:\"The $control_id argument is deprecated since version 3.5.0!\";s:4:\"file\";s:94:\"/home/lanternrealty/public_html/wp-content/plugins/elementor/modules/dev-tools/deprecation.php\";s:4:\"line\";i:301;s:5:\"trace\";b:1;}}}','no'),(320448,'elementor_install_history','a:5:{s:5:\"3.0.9\";i:1600617929;s:6:\"3.0.11\";i:1602540058;s:6:\"3.0.14\";i:1606787954;s:5:\"3.1.1\";i:1614124500;s:5:\"3.2.2\";i:1619834730;}','yes'),(360604,'mec_custom_msg_display','1','yes'),(360605,'mec_custom_msg_display_option','1','yes'),(360606,'mec_custom_msg_close_option','close','yes'),(552372,'rsssl_upgraded_to_four','1','yes'),(552373,'rsssl_mixed_content_scan_dismissed','1','yes'),(552374,'rsssl_google_analytics_dismissed','1','yes'),(361818,'_transient_842283ec1_elements','a:0:{}','yes'),(361819,'_transient_842283ec1_custom_js','','yes'),(360599,'mec_custom_msg_2_display','1','yes'),(360600,'mec_custom_msg_2_display_option','1','yes'),(360601,'mec_custom_msg_2_close_option','close','yes'),(360602,'mec_saved_message_time','2020-10-18','yes'),(360603,'mec_custom_msg_html','<link rel = \"stylesheet\" type = \"text/css\" href = \"https://webnus.net/modern-events-calendar/addons-api/mec-extra-content/style.css\" /><div class=\"mec-custom-msg-notification-set-box extra\"><div class=\"w-row mec-custom-msg-notification-wrap\"><div class=\"w-col-sm-12\"><div class=\"w-clearfix w-box mec-cmsg-notification-box-wrap mec-new-addons-wrap\"><div class=\"w-box-head\">Announcement<span><i class=\"mec-sl-close\"></i></span></div><div class=\"w-box-content\"><div class=\"mec-addons-notification-box-image\"> <img src=\"https://webnus.net/modern-events-calendar/addons-api/mec-extra-content/divi-single-builder-addon-banner.png\" /></div><div class=\"mec-addons-notification-box-content mec-new-addons\"><div class=\"w-box-content\"><div class=\"mec-addons-notification-title\">Divi Single Builder Addon</div><p>With the help of this add-on, you will be able to create a ready-made template for all your events, add styles that you like to your single events, and change the layout in Divi page builder with a single drag and drop. Also, if there is a widget that you do not like, you can delete it and use other widgets in the single event of your website. You can use all the widgets of the single event separately and create any section that you want with whatever size that you want. You can also set an animation for each widget.</p><strong>Key Features:</strong><div class=\"mec-addons-key-features\"><ul><li>Creating Templates</li><li>Active Alongside Other Page Builders</li><li>Unique Styling</li><li>Activate On MEC Lite</li></ul></div><div style=\"clear:both\"></div><a href=\"https://webnus.net/modern-events-calendar/addons/divi-single-builder/?ref=17\" target=\"_blank\">Read More</a></div></div></div></div></div></div></div>','yes'),(357104,'_transient_d6d5d0d31_custom_js','','yes'),(357105,'_transient_d6d5d0d31_updated_at','1605059632','yes'),(357075,'_transient_fb50644f7_elements','a:0:{}','yes'),(357076,'_transient_fb50644f7_custom_js','','yes'),(357077,'_transient_fb50644f7_updated_at','1605059632','yes'),(357082,'_transient_b119eb73c_elements','a:0:{}','yes'),(357083,'_transient_b119eb73c_custom_js','','yes'),(357084,'_transient_b119eb73c_updated_at','1605059632','yes'),(357085,'_transient_3e7302ede_elements','a:0:{}','yes'),(357086,'_transient_3e7302ede_custom_js','','yes'),(357087,'_transient_3e7302ede_updated_at','1605059632','yes'),(357088,'_transient_40e70554a_elements','a:0:{}','yes'),(357089,'_transient_40e70554a_custom_js','','yes'),(357090,'_transient_40e70554a_updated_at','1605059632','yes'),(357093,'_transient_c362e2ad6_elements','a:0:{}','yes'),(357094,'_transient_c362e2ad6_custom_js','','yes'),(357095,'_transient_c362e2ad6_updated_at','1605059632','yes'),(230684,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(352307,'stats_cache','a:2:{s:32:\"f44ab0452d11817a00e55398a6c656c8\";a:1:{i:1602540883;a:0:{}}s:32:\"8a5324c31ed91b32071fc072c16ad16f\";a:1:{i:1602540883;a:0:{}}}','yes'),(1270094,'06c77cc06_eael_updated_at','1656030088','no'),(1294322,'8e77d97ce_eael_updated_at','1656030088','no'),(552442,'redux-framework_tracking_notice','hide','yes'),(552443,'redux-framework_tracking_skipped','yes','yes'),(360333,'wpmudev_recommended_plugins_registered','a:1:{s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1602987008;}}','no'),(320508,'redux-framework_allow_tracking','no','yes'),(320746,'elementor_disable_typography_schemes','','yes'),(320747,'elementor_notice','','yes'),(320748,'elementor_css_print_method','external','yes'),(320749,'elementor_editor_break_lines','1','yes'),(320750,'elementor_unfiltered_files_upload','','yes'),(320751,'elementor_optimized_dom_output','','yes'),(320752,'elementor_load_fa4_shim','','yes'),(360327,'wp-smush-settings','a:22:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:1;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:1;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:1;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:4:\"bulk\";b:0;}','yes'),(360251,'w3tc_state','{\"common.install\":1602982913,\"common.install_version\":\"0.15.1\",\"license.status\":\"no_key\",\"license.next_check\":1603414913,\"license.terms\":\"\",\"minify.hide_minify_help\":true,\"license.community_terms\":\"accept\",\"common.show_note.plugins_updated\":true,\"common.show_note.plugins_updated.timestamp\":1602985952}','no'),(360328,'wp-smush-install-type','existing','no'),(360329,'wp-smush-version','3.9.11','no'),(360265,'w3tc_minify','{\"c7035.js\":[\"wp-includes\\/js\\/jquery\\/jquery.js\"],\"787d0.js\":[\"wp-content\\/plugins\\/add-to-any\\/addtoany.min.js\",\"wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js\",\"wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js\",\"wp-content\\/plugins\\/content-protector\\/assets\\/public\\/cookie.js\",\"wp-content\\/plugins\\/content-protector\\/assets\\/public\\/captcha.js\"],\"1df76.js\":[\"wp-content\\/plugins\\/content-protector\\/assets\\/public\\/passster-public.min.js\"],\"7ff5b.js\":[\"wp-includes\\/js\\/thickbox\\/thickbox.js\",\"wp-includes\\/js\\/jquery\\/ui\\/core.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/datepicker.min.js\"],\"5bd71.js\":[\"wp-includes\\/js\\/jquery\\/ui\\/widget.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/position.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/menu.min.js\",\"wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js\",\"wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-fetch.min.js\",\"wp-includes\\/js\\/dist\\/dom-ready.min.js\",\"wp-includes\\/js\\/dist\\/i18n.min.js\"],\"064ea.js\":[\"wp-includes\\/js\\/dist\\/a11y.min.js\"],\"1a319.js\":[\"wp-includes\\/js\\/jquery\\/ui\\/autocomplete.min.js\"],\"f5008.js\":[\"wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/scripts.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/bootstrap.bundle.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/bootstrap-select.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/modernizr.custom.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/slideout.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/lightbox.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/theia-sticky-sidebar.min.js\",\"wp-content\\/themes\\/houzez\\/js\\/vendors\\/slick.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/mouse.min.js\",\"wp-includes\\/js\\/jquery\\/ui\\/slider.min.js\"],\"e1ccd.js\":[\"wp-content\\/themes\\/houzez\\/js\\/custom.js\"],\"e2d4b.js\":[\"wp-includes\\/js\\/wp-embed.min.js\",\"wp-content\\/plugins\\/js_composer\\/assets\\/js\\/dist\\/js_composer_front.min.js\",\"wp-content\\/plugins\\/js_composer\\/assets\\/lib\\/waypoints\\/waypoints.min.js\"],\"55015.css\":[\"wp-includes\\/css\\/dashicons.min.css\",\"wp-includes\\/js\\/thickbox\\/thickbox.css\"],\"88aef.css\":[\"wp-includes\\/css\\/dist\\/block-library\\/style.min.css\",\"wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css\",\"wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css\"],\"799ed.css\":[\"wp-content\\/plugins\\/content-protector\\/assets\\/public\\/passster-public.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/bootstrap.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/bootstrap-select.min.css\",\"wp-content\\/plugins\\/elementor\\/assets\\/lib\\/font-awesome\\/css\\/all.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/icons.css\",\"wp-content\\/themes\\/houzez\\/css\\/slick-min.css\",\"wp-content\\/themes\\/houzez\\/css\\/slick-theme-min.css\",\"wp-content\\/themes\\/houzez\\/css\\/jquery-ui.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/radio-checkbox-min.css\",\"wp-content\\/themes\\/houzez\\/css\\/bootstrap-datepicker.min.css\",\"wp-content\\/themes\\/houzez\\/css\\/main.css\",\"wp-content\\/themes\\/houzez\\/css\\/styling-options.css\",\"wp-content\\/themes\\/houzez\\/style.css\"],\"a03d0.css\":[\"wp-content\\/plugins\\/js_composer\\/assets\\/css\\/js_composer.min.css\",\"wp-content\\/plugins\\/add-to-any\\/addtoany.min.css\"],\"22db3.css\":[\"wp-content\\/plugins\\/simple-real-estate-pack-4\\/css\\/srp.css\",\"wp-content\\/plugins\\/simple-real-estate-pack-4\\/css\\/ui.tabs.css\"],\"b5b04.css\":[\"wp-content\\/plugins\\/js_composer\\/assets\\/lib\\/bower\\/animate-css\\/animate.min.css\"]}','no'),(352039,'wpdocs_options','a:10:{s:21:\"wpdocs_options_update\";s:4:\"true\";s:12:\"allowed_role\";a:0:{}s:9:\"icon_size\";s:0:\"\";s:9:\"font_size\";s:0:\"\";s:11:\"allowed_ext\";s:29:\"doc, docx, png, gif, bmp, jpg\";s:9:\"bootstrap\";s:4:\"true\";s:9:\"searchbox\";s:4:\"true\";s:11:\"thumb_image\";s:4:\"true\";s:12:\"details_type\";s:4:\"true\";s:12:\"details_size\";s:4:\"true\";}','yes'),(352080,'wpdocs_view','a:1:{i:0;s:11:\"detail_view\";}','yes'),(357027,'_transient_e0f760bcc_elements','a:0:{}','yes'),(357028,'_transient_e0f760bcc_custom_js','','yes'),(357029,'_transient_e0f760bcc_updated_at','1605059632','yes'),(401192,'_transient_ae8a55395_elements','a:0:{}','yes'),(401193,'_transient_ae8a55395_custom_js','','yes'),(401194,'_transient_ae8a55395_updated_at','1605059632','yes'),(357786,'_transient_66b3eb4d0_custom_js','','yes'),(357787,'_transient_66b3eb4d0_updated_at','1605059632','yes'),(357791,'_transient_d460f4ec3_elements','a:0:{}','yes'),(357792,'_transient_d460f4ec3_custom_js','','yes'),(357793,'_transient_d460f4ec3_updated_at','1605059632','yes'),(357796,'_transient_6ed4a5664_elements','a:0:{}','yes'),(357797,'_transient_6ed4a5664_custom_js','','yes'),(357798,'_transient_6ed4a5664_updated_at','1605059632','yes'),(357803,'_transient_95bbbf13b_elements','a:0:{}','yes'),(357804,'_transient_95bbbf13b_custom_js','','yes'),(357805,'_transient_95bbbf13b_updated_at','1605059632','yes'),(356788,'_transient_c8773739b_elements','a:0:{}','yes'),(320743,'_elementor_settings_update_time','1651343325','yes'),(320744,'elementor_cpt_support','a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:13:\"houzez_agency\";i:3;s:12:\"houzez_agent\";}','yes'),(320745,'elementor_disable_color_schemes','','yes'),(360337,'smush_global_stats','a:9:{s:11:\"size_before\";i:602942885;s:10:\"size_after\";i:578150000;s:7:\"percent\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"human\";s:7:\"23.6 MB\";s:5:\"bytes\";i:24792885;s:12:\"total_images\";i:2002;s:12:\"resize_count\";i:6;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(360340,'wp-smush-lazy_load','a:9:{s:6:\"format\";a:5:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;s:6:\"iframe\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:6:\"fadein\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";i:1;s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;s:6:\"native\";b:0;s:8:\"noscript\";b:0;}','yes'),(360339,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(360341,'skip-smush-setup','1','yes'),(360344,'wp-smush-hide_smush_welcome','1','no'),(360345,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;}','yes'),(361919,'widget_gce_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(360454,'WpFastestCache','{\"wpFastestCachePreload_homepage\":\"on\",\"wpFastestCachePreload_post\":\"on\",\"wpFastestCachePreload_category\":\"on\",\"wpFastestCachePreload_page\":\"on\",\"wpFastestCachePreload_tag\":\"on\",\"wpFastestCachePreload_attachment\":\"on\",\"wpFastestCachePreload_customposttypes\":\"on\",\"wpFastestCachePreload_customTaxonomies\":\"on\",\"wpFastestCachePreload_number\":\"4\",\"wpFastestCachePreload_restart\":\"on\",\"wpFastestCachePreload_order\":\"\",\"wpFastestCacheMobile\":\"on\",\"wpFastestCacheNewPost\":\"on\",\"wpFastestCacheNewPost_type\":\"all\",\"wpFastestCacheUpdatePost\":\"on\",\"wpFastestCacheUpdatePost_type\":\"post\",\"wpFastestCacheLanguage\":\"eng\"}','yes'),(360455,'wpfc-group','','yes'),(360450,'WpFc_api_key','dbfc919b3d9857899f623bacd09b4869','yes'),(356752,'_transient_921d470f8_elements','a:0:{}','yes'),(348457,'wpforms_version','1.6.2.3','yes'),(348496,'erp_settings_erp-crm_subscription','a:8:{s:10:\"is_enabled\";s:3:\"yes\";s:13:\"email_subject\";s:59:\"Confirm your subscription to Lantern Realty and Development\";s:13:\"email_content\";s:293:\"Hello!\n\nThanks so much for signing up for our newsletter.\nWe need you to activate your subscription to the list(s): [contact_groups_to_confirm] by clicking the link below: \n\n[activation_link]Click here to confirm your subscription.[/activation_link]\n\nThank you,\n\nLantern Realty and Development\";s:7:\"page_id\";i:868;s:18:\"confirm_page_title\";s:23:\"You are now subscribed!\";s:20:\"confirm_page_content\";s:63:\"We\'ve added you to our email list. You\'ll hear from us shortly.\";s:17:\"unsubs_page_title\";s:24:\"You are now unsubscribed\";s:19:\"unsubs_page_content\";s:47:\"You are successfully unsubscribed from list(s):\";}','yes'),(422777,'0f0b6552d_elements','a:0:{}','yes'),(422778,'0f0b6552d_custom_js','','yes'),(358694,'_transient_1e602e7fe_elements','a:0:{}','yes'),(358695,'_transient_1e602e7fe_custom_js','','yes'),(358696,'_transient_1e602e7fe_updated_at','1605059632','yes'),(434760,'e661d9210_elements','a:0:{}','yes'),(434761,'e661d9210_custom_js','','yes'),(434762,'e661d9210_updated_at','1606787969','yes'),(356869,'postie-settings','a:74:{s:16:\"input_connection\";s:7:\"sockets\";s:14:\"input_protocol\";s:8:\"imap-ssl\";s:16:\"mail_server_port\";s:3:\"993\";s:11:\"mail_server\";s:23:\"mail.lantern-realty.com\";s:11:\"mail_userid\";s:32:\"announcements@lantern-realty.com\";s:13:\"mail_password\";s:14:\"2020LanternRD!\";s:17:\"ignore_email_date\";s:1:\"1\";s:15:\"use_time_offset\";s:1:\"1\";s:11:\"time_offset\";s:1:\"0\";s:8:\"interval\";s:10:\"tenminutes\";s:9:\"maxemails\";s:1:\"0\";s:28:\"delete_mail_after_processing\";s:1:\"1\";s:16:\"postie_log_error\";s:1:\"1\";s:23:\"postie_log_error_notify\";s:5:\"admin\";s:16:\"postie_log_debug\";s:1:\"1\";s:11:\"role_access\";a:1:{s:6:\"author\";s:1:\"1\";}s:20:\"authorized_addresses\";s:0:\"\";s:14:\"admin_username\";s:5:\"admin\";s:16:\"force_user_login\";s:1:\"0\";s:22:\"turn_authorization_off\";s:1:\"0\";s:16:\"prefer_text_type\";s:4:\"html\";s:19:\"prefer_text_convert\";s:1:\"1\";s:21:\"default_post_category\";s:2:\"16\";s:14:\"category_match\";s:1:\"1\";s:14:\"category_colon\";s:1:\"1\";s:13:\"category_dash\";s:1:\"1\";s:16:\"category_bracket\";s:1:\"1\";s:15:\"category_remove\";s:1:\"1\";s:17:\"default_post_tags\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:11:\"post_format\";s:8:\"standard\";s:9:\"post_type\";s:4:\"post\";s:13:\"default_title\";s:20:\"Lantern Announcement\";s:16:\"reply_as_comment\";s:1:\"1\";s:11:\"strip_reply\";s:1:\"1\";s:21:\"forward_rejected_mail\";s:1:\"1\";s:21:\"allow_subject_in_mail\";s:1:\"1\";s:21:\"allow_html_in_subject\";s:1:\"1\";s:18:\"allow_html_in_body\";s:1:\"1\";s:13:\"message_start\";s:0:\"\";s:11:\"message_end\";s:0:\"\";s:14:\"filternewlines\";s:1:\"1\";s:14:\"convertnewline\";s:1:\"0\";s:16:\"return_to_sender\";s:1:\"0\";s:18:\"confirmation_email\";s:6:\"sender\";s:11:\"converturls\";s:1:\"1\";s:14:\"drop_signature\";s:1:\"1\";s:16:\"sig_pattern_list\";s:29:\"--\\s?[\\r\\n]?\r\n--\\s\r\n--\r\n---\r\n\";s:14:\"featured_image\";s:1:\"0\";s:22:\"include_featured_image\";s:1:\"1\";s:12:\"auto_gallery\";s:1:\"0\";s:17:\"auto_gallery_link\";s:7:\"Default\";s:13:\"images_append\";s:1:\"1\";s:25:\"start_image_count_at_zero\";s:1:\"0\";s:18:\"custom_image_field\";s:1:\"0\";s:12:\"image_resize\";s:1:\"1\";s:17:\"image_placeholder\";s:6:\"#img%#\";s:22:\"selected_imagetemplate\";s:17:\"wordpress_default\";s:13:\"imagetemplate\";s:153:\"<a href=\"{PAGELINK}\"><img src=\"{MEDIUM}\" alt=\"{CAPTION}\" width=\"{MEDIUMWIDTH}\" height=\"{MEDIUMHEIGHT}\" class=\"alignnone size-medium wp-image-{ID}\" /></a>\";s:23:\"selected_video1template\";s:10:\"vshortcode\";s:14:\"video1template\";s:64:\"[video width=\"568\" height=\"320\" {FILETYPE}=\"{FILELINK}\"][/video]\";s:11:\"video1types\";s:56:\"mp4, mpeg4, 3gp, 3gpp, 3gpp2, 3gp2, mov, mpeg, quicktime\";s:23:\"selected_video2template\";s:11:\"simple_link\";s:14:\"video2template\";s:35:\"<a href=\"{FILELINK}\">{FILENAME}</a>\";s:11:\"video2types\";s:5:\"x-flv\";s:22:\"selected_audiotemplate\";s:11:\"simple_link\";s:13:\"audiotemplate\";s:35:\"<a href=\"{FILELINK}\">{FILENAME}</a>\";s:10:\"audiotypes\";s:24:\"m4a, mp3, ogg, wav, mpeg\";s:20:\"supported_file_types\";s:13:\"application\r\n\";s:17:\"banned_files_list\";s:0:\"\";s:8:\"icon_set\";s:5:\"metro\";s:9:\"icon_size\";s:2:\"48\";s:24:\"selected_generaltemplate\";s:14:\"postie_default\";s:15:\"generaltemplate\";s:42:\"<a href=\"{FILELINK}\">{ICON} {FILENAME}</a>\";}','yes'),(320722,'_elementor_editor_upgrade_notice_dismissed','1653526457','yes'),(352108,'_transient_googlesitekit_verification_meta_tags','a:0:{}','yes'),(352105,'googlesitekit_new_site_posts','0','yes'),(352106,'googlesitekit_db_version','1.8.1','yes'),(352107,'googlesitekit_has_connected_admins','1','yes'),(352112,'googlesitekit_credentials','oQe3p8kRjpEtaWs39Xnia3lzc3FaSlhyeUxvcm9OL2NWWE9hNGJ0NGFUYnc4K3plTlpMeEsvSWt3WU5GZmRBdnNIc0lzVVJxNGlFK2RHRFNVQXMvemdPZTZuRkh3RHhKK2VNT1dxQXBwdG1idk9WRUs5Y3JKZTUyeDZZMjhVK2daWHVqVkI2OVUzY3BQamJNNlNyUWc2V0ZOczBGTHFLbEV6Z0lKcFdsOXkrdWVnMU5Xd01Ga1JzeFdXdlR6eVZISzhGMVd4N3B0MEpQMmd2TWprWG9ESk1RZ3NpRk1CVitsSDdBT3ZRRGtVeXpkYWM0c0U3Y1pvYnJzNGFjdU9QN0d6RlpJMDJuekFDMkVkVW5GbEp2N2tYaEdMRkxkTys3N3JyVE5QTjhIYzhUSW5IT2VKZnFPYVFmb0NzMktQMUYwd1Y3SmRiejBRPT0=','yes'),(352113,'googlesitekit_connected_proxy_url','https://lantern-realty.com/','yes'),(352114,'googlesitekit_search-console_settings','a:1:{s:10:\"propertyID\";s:27:\"https://lantern-realty.com/\";}','yes'),(352115,'googlesitekit_owner_id','1','yes'),(352117,'googlesitekit_active_modules','a:2:{i:0;s:9:\"analytics\";i:1;s:18:\"pagespeed-insights\";}','yes'),(352119,'googlesitekit_analytics_settings','a:9:{s:7:\"ownerID\";i:1;s:9:\"accountID\";s:9:\"125820020\";s:13:\"adsenseLinked\";b:0;s:11:\"anonymizeIP\";b:1;s:21:\"internalWebPropertyID\";s:9:\"184453620\";s:9:\"profileID\";s:9:\"181815156\";s:10:\"propertyID\";s:14:\"UA-125820020-1\";s:16:\"trackingDisabled\";a:1:{i:0;s:13:\"loggedinUsers\";}s:10:\"useSnippet\";b:1;}','yes'),(351581,'wp_mail_smtp_initial_version','2.4.0','no'),(351496,'wp_protect_password_misc_options','{\"wpp_use_custom_form_action\":\"true\"}','no'),(351497,'pda-pwd-tbl-version','1.8','yes'),(351505,'wp_protect_password_shortcode_options','{\"wpp_use_shortcode_page_builder\":\"true\"}','no'),(348532,'wedevs-project-manager_allow_tracking','no','yes'),(348534,'wedevs-project-manager_tracking_skipped','yes','yes'),(357136,'_transient_6edae09f5_elements','a:0:{}','yes'),(357137,'_transient_6edae09f5_custom_js','','yes'),(357138,'_transient_6edae09f5_updated_at','1605059632','yes'),(357143,'_transient_8f82431e3_elements','a:0:{}','yes'),(357144,'_transient_8f82431e3_custom_js','','yes'),(357145,'_transient_8f82431e3_updated_at','1605059632','yes'),(357167,'_transient_6999fbcf5_elements','a:0:{}','yes'),(357168,'_transient_6999fbcf5_custom_js','','yes'),(357169,'_transient_6999fbcf5_updated_at','1605059632','yes'),(357183,'_transient_50ab2d314_elements','a:0:{}','yes'),(357184,'_transient_50ab2d314_custom_js','','yes'),(357185,'_transient_50ab2d314_updated_at','1605059632','yes'),(360590,'mec_options','a:5:{s:8:\"settings\";a:7:{s:24:\"multiple_day_show_method\";s:18:\"first_day_listgrid\";s:18:\"google_maps_status\";i:1;s:20:\"export_module_status\";i:1;s:2:\"sn\";a:7:{s:9:\"googlecal\";i:1;s:4:\"ical\";i:1;s:8:\"facebook\";i:1;s:5:\"gplus\";i:1;s:7:\"twitter\";i:1;s:8:\"linkedin\";i:1;s:5:\"email\";i:1;}s:16:\"countdown_status\";i:1;s:21:\"social_network_status\";i:1;s:20:\"default_skin_archive\";s:13:\"full_calendar\";}s:6:\"styles\";a:1:{s:3:\"CSS\";s:0:\"\";}s:8:\"gateways\";a:1:{i:1;a:1:{s:6:\"status\";i:1;}}s:13:\"notifications\";a:7:{s:20:\"booking_notification\";a:3:{s:7:\"subject\";s:25:\"Your booking is received.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:238:\"Hello %%name%%,\r\n\r\n                    Your booking is received. We will check and confirm your booking as soon as possible.\r\n                    Thanks for your patience.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:18:\"email_verification\";a:3:{s:7:\"subject\";s:27:\"Please verify your booking.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:205:\"Hi %%name%%,\r\n\r\n                    Please verify your booking by clicking on following link:\r\n\r\n                    %%verification_link%%\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:20:\"booking_confirmation\";a:3:{s:7:\"subject\";s:26:\"Your booking is confirmed.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:295:\"Hi %%name%%,\r\n\r\n                    Your booking is confirmed. You should be available at %%book_date%% in %%event_location_address%%.\r\n\r\n                    You can contact to event organizer by calling %%event_organizer_tel%%.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:25:\"cancellation_notification\";a:7:{s:6:\"status\";s:1:\"0\";s:7:\"subject\";s:25:\"Your booking is canceled.\";s:10:\"recipients\";s:0:\"\";s:13:\"send_to_admin\";s:1:\"1\";s:17:\"send_to_organizer\";s:1:\"0\";s:12:\"send_to_user\";s:1:\"0\";s:7:\"content\";s:187:\"Hi %%name%%,\r\n\r\n                    For your information, your booking for %%event_title%% at %%book_date%% is canceled.\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:18:\"admin_notification\";a:3:{s:7:\"subject\";s:26:\"A new booking is received.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:282:\"Dear Admin,\r\n\r\n                    A new booking is received. Please check and confirm it as soon as possible.\r\n\r\n                    %%admin_link%%\r\n                    \r\n                    %%attendees_full_info%%\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:9:\"new_event\";a:4:{s:6:\"status\";s:1:\"1\";s:7:\"subject\";s:21:\"A new event is added.\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:322:\"Hello,\r\n\r\n                    A new event just added. The event title is %%event_title%% and its status is %%event_status%%.\r\n                    The new event may need to be published. Please use this link for managing your website events: %%admin_link%%\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}s:21:\"user_event_publishing\";a:4:{s:6:\"status\";s:1:\"1\";s:7:\"subject\";s:25:\"Your event gets published\";s:10:\"recipients\";s:0:\"\";s:7:\"content\";s:224:\"Hello %%name%%,\r\n\r\n                    Your event gets published. You can check it below:\r\n\r\n                    <a href=\"%%event_link%%\">%%event_title%%</a>\r\n\r\n                    Regards,\r\n                    %%blog_name%%\";}}s:2:\"ix\";a:4:{s:21:\"google_import_api_key\";s:39:\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\";s:25:\"google_import_calendar_id\";s:52:\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\";s:24:\"google_import_start_date\";s:10:\"2020-09-18\";s:22:\"google_import_end_date\";s:10:\"2021-01-18\";}}','yes'),(351716,'weforms_hide_fortressdb_version','1.4.9','yes'),(360593,'widget_mec_mec_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(360594,'widget_mec_single_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(360595,'mec_gfont','','yes'),(360596,'mec_dyncss','','yes'),(360597,'mec_saved_message_2_time','2020-10-18','yes'),(360598,'mec_custom_msg_2_html','<link rel = \"stylesheet\" type = \"text/css\" href = \"https://webnus.net/modern-events-calendar/addons-api/mec-extra-content/style.css\" /><div class=\"mec-custom-msg-notification-set-box extra\"><div class=\"w-row mec-custom-msg-notification-wrap\"><div class=\"w-col-sm-12\"><div class=\"w-clearfix w-box mec-cmsg-2-notification-box-wrap mec-new-addons-wrap\"><div class=\"w-box-head\">Announcement<span><i class=\"mec-sl-close\"></i></span></div><div class=\"w-box-content\"><div class=\"mec-addons-notification-box-image\"> <img src=\"https://webnus.net/modern-events-calendar/addons-api/mec-extra-content/zoom-integration-addon-banner.png\" /></div><div class=\"mec-addons-notification-box-content mec-new-addons\"><div class=\"w-box-content\"><div class=\"mec-addons-notification-title\">Zoom Integration Addon</div><p>With this add-on you can show your users the information regarding your meetings and webinars. Provide the users with an embedded code of your event link plus username and password. You can choose whether they should be able to see this information after the reservation or be shown to everyone. You can also send this information via email after the reservation is done. Put a badge on shortcodes and single events to make them stand out.</p><strong>Key Features:</strong><div class=\"mec-addons-key-features\"><ul><li>Import/Export Zoom Webinars</li><li>Import/Export Zoom Meetings</li><li>View Embedded</li><li>Email Placeholders</li><li>View In Single Event</li><li>View In Shortcodes</li></ul></div><div style=\"clear:both\"></div><a href=\"https://webnus.net/modern-events-calendar/addons/zoom-integration/?ref=17\" target=\"_blank\">Read More</a></div></div></div></div></div></div></div>','yes'),(348582,'user_registration_ajax_form_submission_on_edit_profile','no','yes'),(348583,'user_registration_disable_logout_confirmation','no','yes'),(398885,'_transient_228c5125d_elements','a:0:{}','yes'),(398886,'_transient_228c5125d_custom_js','','yes'),(398887,'_transient_228c5125d_updated_at','1605059632','yes'),(381766,'_transient_7c47d25a3_elements','a:0:{}','yes'),(381767,'_transient_7c47d25a3_custom_js','','yes'),(381768,'_transient_7c47d25a3_updated_at','1605059632','yes'),(381770,'_transient_c8abb3072_elements','a:0:{}','yes'),(381771,'_transient_c8abb3072_custom_js','','yes'),(381772,'_transient_c8abb3072_updated_at','1605059632','yes'),(362698,'_transient_9583082da_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362665,'_transient_6a6288fa6_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362666,'_transient_6a6288fa6_custom_js','','yes'),(362667,'_transient_6a6288fa6_updated_at','1605059632','yes'),(417915,'3bb40134c_elements','a:0:{}','yes'),(417916,'3bb40134c_custom_js','','yes'),(417917,'3bb40134c_updated_at','1606787969','yes'),(1253255,'17aafa3d4_eael_updated_at','1656030088','no'),(417969,'bc052ff1d_elements','a:0:{}','yes'),(417970,'bc052ff1d_custom_js','','yes'),(417971,'bc052ff1d_updated_at','1623201995','yes'),(1253363,'7d742eaab_eael_updated_at','1656030088','no'),(1258212,'2ce28ceb7_eael_updated_at','1656030088','no'),(361820,'_transient_842283ec1_updated_at','1605059632','yes'),(361823,'_transient_45184feba_elements','a:0:{}','yes'),(361824,'_transient_45184feba_custom_js','','yes'),(361825,'_transient_45184feba_updated_at','1605059632','yes'),(1251241,'6a6288fa6_eael_updated_at','1656030088','no'),(635193,'rsssl_current_version','5.3.1','yes'),(621352,'edade4508_elements','a:0:{}','yes'),(621353,'edade4508_custom_js','','yes'),(621354,'edade4508_updated_at','1614130785','yes'),(659247,'https_detection_errors','a:0:{}','yes'),(635262,'37a6d66e5_elements','a:0:{}','yes'),(635263,'37a6d66e5_custom_js','','yes'),(630908,'gdoc_settings','a:2:{s:18:\"datatables_classes\";s:10:\"igsv-table\";s:26:\"datatables_defaults_object\";O:8:\"stdClass\":2:{s:3:\"dom\";s:16:\"B<\'clear\'>lfrtip\";s:7:\"buttons\";a:6:{i:0;s:6:\"colvis\";i:1;s:4:\"copy\";i:2;s:3:\"csv\";i:3;s:5:\"excel\";i:4;s:3:\"pdf\";i:5;s:5:\"print\";}}}','yes'),(443590,'784145965_elements','a:0:{}','yes'),(443591,'784145965_custom_js','','yes'),(443592,'784145965_updated_at','1606787969','yes'),(1303463,'c968779c8_eael_updated_at','1651360580','no'),(418336,'7aca7e306_elements','a:0:{}','yes'),(418337,'7aca7e306_custom_js','','yes'),(418338,'7aca7e306_updated_at','1614130785','yes'),(1252121,'10149ad02_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(1252123,'10149ad02_eael_updated_at','1656030088','no'),(1250945,'ea1d43322_eael_updated_at','1656030088','no'),(1345573,'e2976cf2c_eael_updated_at','1650419774','no'),(391508,'_transient_a4e475ec8_elements','a:0:{}','yes'),(392820,'_transient_a3f114b53_elements','a:0:{}','yes'),(364027,'user_role_editor','a:8:{s:11:\"ure_version\";s:4:\"4.62\";s:15:\"show_admin_role\";s:1:\"1\";s:17:\"ure_caps_readable\";s:1:\"1\";s:24:\"ure_show_deprecated_caps\";s:1:\"1\";s:23:\"ure_confirm_role_update\";s:1:\"1\";s:14:\"edit_user_caps\";s:1:\"1\";s:18:\"caps_columns_quant\";i:1;s:24:\"count_users_without_role\";s:1:\"1\";}','yes'),(364028,'lrwp_backup_user_roles','a:14:{s:13:\"administrator\";a:16:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:137:{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:17:\"create_properties\";b:1;s:18:\"publish_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:19:\"delete_user_package\";b:1;s:20:\"delete_user_packages\";b:1;s:18:\"edit_user_packages\";b:1;s:27:\"delete_others_user_packages\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:11:\"run_adminer\";b:1;s:24:\"manage_user_registration\";b:1;s:22:\"edit_user_registration\";b:1;s:22:\"read_user_registration\";b:1;s:24:\"delete_user_registration\";b:1;s:23:\"edit_user_registrations\";b:1;s:30:\"edit_others_user_registrations\";b:1;s:26:\"publish_user_registrations\";b:1;s:31:\"read_private_user_registrations\";b:1;s:25:\"delete_user_registrations\";b:1;s:33:\"delete_private_user_registrations\";b:1;s:35:\"delete_published_user_registrations\";b:1;s:32:\"delete_others_user_registrations\";b:1;s:31:\"edit_private_user_registrations\";b:1;s:33:\"edit_published_user_registrations\";b:1;s:30:\"manage_user_registration_terms\";b:1;s:28:\"edit_user_registration_terms\";b:1;s:30:\"delete_user_registration_terms\";b:1;s:30:\"assign_user_registration_terms\";b:1;s:13:\"config_postie\";b:1;s:15:\"post_via_postie\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;s:23:\"tablepress_edit_options\";b:1;}s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"editor\";a:16:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:83:{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:17:\"create_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:18:\"publish_properties\";b:1;s:15:\"edit_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:23:\"read_private_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:22:\"edit_others_properties\";b:1;s:24:\"delete_others_properties\";b:1;s:23:\"edit_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:18:\"delete_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:19:\"delete_testimonials\";b:1;s:27:\"delete_private_testimonials\";b:1;s:26:\"delete_others_testimonials\";b:1;s:24:\"edit_others_testimonials\";b:1;s:25:\"edit_private_testimonials\";b:1;s:10:\"read_agent\";b:1;s:12:\"delete_agent\";b:1;s:10:\"edit_agent\";b:1;s:13:\"create_agents\";b:1;s:11:\"edit_agents\";b:1;s:18:\"edit_others_agents\";b:1;s:14:\"publish_agents\";b:1;s:19:\"read_private_agents\";b:1;s:13:\"delete_agents\";b:1;s:21:\"delete_private_agents\";b:1;s:23:\"delete_published_agents\";b:1;s:20:\"delete_others_agents\";b:1;s:19:\"edit_private_agents\";b:1;s:21:\"edit_published_agents\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:6:\"author\";a:16:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:20:{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:15:\"post_via_postie\";b:1;s:22:\"tablepress_edit_tables\";b:1;s:24:\"tablepress_delete_tables\";b:1;s:22:\"tablepress_list_tables\";b:1;s:21:\"tablepress_add_tables\";b:1;s:22:\"tablepress_copy_tables\";b:1;s:24:\"tablepress_import_tables\";b:1;s:24:\"tablepress_export_tables\";b:1;s:32:\"tablepress_access_options_screen\";b:1;s:30:\"tablepress_access_about_screen\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:11:\"contributor\";a:16:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:12:{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:\"create_properties\";b:1;s:13:\"read_property\";b:1;s:15:\"delete_property\";b:1;s:13:\"edit_property\";b:1;s:15:\"edit_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:27:\"delete_published_properties\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:10:\"subscriber\";a:16:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}s:14:\"erp_hr_manager\";a:2:{s:4:\"name\";s:10:\"HR Manager\";s:12:\"capabilities\";a:42:{s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"erp_list_employee\";b:1;s:19:\"erp_create_employee\";b:1;s:17:\"erp_view_employee\";b:1;s:17:\"erp_edit_employee\";b:1;s:19:\"erp_delete_employee\";b:1;s:17:\"erp_create_review\";b:1;s:17:\"erp_delete_review\";b:1;s:17:\"erp_manage_review\";b:1;s:22:\"erp_crate_announcement\";b:1;s:21:\"erp_view_announcement\";b:1;s:23:\"erp_manage_announcement\";b:1;s:18:\"erp_manage_jobinfo\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:21:\"erp_manage_department\";b:1;s:22:\"erp_manage_designation\";b:1;s:24:\"erp_leave_create_request\";b:1;s:16:\"erp_leave_manage\";b:1;s:22:\"erp_manage_hr_settings\";b:1;s:21:\"erp_create_experience\";b:1;s:19:\"erp_edit_experience\";b:1;s:19:\"erp_view_experience\";b:1;s:21:\"erp_delete_experience\";b:1;s:20:\"erp_create_education\";b:1;s:18:\"erp_edit_education\";b:1;s:18:\"erp_view_education\";b:1;s:20:\"erp_delete_education\";b:1;s:17:\"erp_can_terminate\";b:1;s:20:\"erp_create_dependent\";b:1;s:18:\"erp_edit_dependent\";b:1;s:18:\"erp_view_dependent\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:17:\"erp_edit_document\";b:1;s:17:\"erp_view_document\";b:1;s:19:\"erp_delete_document\";b:1;s:21:\"erp_create_attendance\";b:1;s:19:\"erp_edit_attendance\";b:1;s:19:\"erp_view_attendance\";b:1;s:21:\"erp_delete_attendance\";b:1;}}s:8:\"employee\";a:2:{s:4:\"name\";s:8:\"Employee\";s:12:\"capabilities\";a:26:{s:4:\"read\";b:1;s:12:\"upload_files\";b:1;s:13:\"erp_view_list\";b:1;s:17:\"erp_list_employee\";b:1;s:17:\"erp_view_employee\";b:1;s:17:\"erp_edit_employee\";b:1;s:16:\"erp_view_jobinfo\";b:1;s:24:\"erp_leave_create_request\";b:1;s:21:\"erp_view_announcement\";b:1;s:21:\"erp_create_experience\";b:1;s:19:\"erp_edit_experience\";b:1;s:19:\"erp_view_experience\";b:1;s:21:\"erp_delete_experience\";b:1;s:20:\"erp_create_education\";b:1;s:18:\"erp_edit_education\";b:1;s:18:\"erp_view_education\";b:1;s:20:\"erp_delete_education\";b:1;s:20:\"erp_create_dependent\";b:1;s:18:\"erp_edit_dependent\";b:1;s:18:\"erp_view_dependent\";b:1;s:20:\"erp_delete_dependent\";b:1;s:19:\"erp_create_document\";b:1;s:17:\"erp_edit_document\";b:1;s:17:\"erp_view_document\";b:1;s:19:\"erp_delete_document\";b:1;s:19:\"erp_view_attendance\";b:1;}}s:14:\"erp_ac_manager\";a:2:{s:4:\"name\";s:18:\"Accounting Manager\";s:12:\"capabilities\";a:43:{s:4:\"read\";b:1;s:21:\"erp_ac_view_dashboard\";b:1;s:20:\"erp_ac_view_customer\";b:1;s:27:\"erp_ac_view_single_customer\";b:1;s:27:\"erp_ac_view_other_customers\";b:1;s:22:\"erp_ac_create_customer\";b:1;s:20:\"erp_ac_edit_customer\";b:1;s:27:\"erp_ac_edit_other_customers\";b:1;s:22:\"erp_ac_delete_customer\";b:1;s:29:\"erp_ac_delete_other_customers\";b:1;s:18:\"erp_ac_view_vendor\";b:1;s:25:\"erp_ac_view_other_vendors\";b:1;s:20:\"erp_ac_create_vendor\";b:1;s:18:\"erp_ac_edit_vendor\";b:1;s:25:\"erp_ac_edit_other_vendors\";b:1;s:20:\"erp_ac_delete_vendor\";b:1;s:27:\"erp_ac_delete_other_vendors\";b:1;s:16:\"erp_ac_view_sale\";b:1;s:25:\"erp_ac_view_single_vendor\";b:1;s:23:\"erp_ac_view_other_sales\";b:1;s:25:\"erp_ac_view_sales_summary\";b:1;s:27:\"erp_ac_create_sales_payment\";b:1;s:28:\"erp_ac_publish_sales_payment\";b:1;s:27:\"erp_ac_create_sales_invoice\";b:1;s:28:\"erp_ac_publish_sales_invoice\";b:1;s:19:\"erp_ac_view_expense\";b:1;s:26:\"erp_ac_view_other_expenses\";b:1;s:28:\"erp_ac_view_expenses_summary\";b:1;s:30:\"erp_ac_create_expenses_voucher\";b:1;s:31:\"erp_ac_publish_expenses_voucher\";b:1;s:29:\"erp_ac_create_expenses_credit\";b:1;s:30:\"erp_ac_publish_expenses_credit\";b:1;s:25:\"erp_ac_view_account_lists\";b:1;s:26:\"erp_ac_view_single_account\";b:1;s:21:\"erp_ac_create_account\";b:1;s:19:\"erp_ac_edit_account\";b:1;s:21:\"erp_ac_delete_account\";b:1;s:25:\"erp_ac_view_bank_accounts\";b:1;s:27:\"erp_ac_create_bank_transfer\";b:1;s:19:\"erp_ac_view_journal\";b:1;s:26:\"erp_ac_view_other_journals\";b:1;s:21:\"erp_ac_create_journal\";b:1;s:19:\"erp_ac_view_reports\";b:1;}}s:12:\"houzez_buyer\";a:2:{s:4:\"name\";s:5:\"Buyer\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:13:\"houzez_agency\";a:2:{s:4:\"name\";s:6:\"Agency\";s:12:\"capabilities\";a:21:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:7:\"level_2\";b:1;}}s:12:\"houzez_agent\";a:2:{s:4:\"name\";s:5:\"Agent\";s:12:\"capabilities\";a:21:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:16:\"read_testimonial\";b:1;s:16:\"edit_testimonial\";b:1;s:19:\"create_testimonials\";b:1;s:17:\"edit_testimonials\";b:1;s:27:\"edit_published_testimonials\";b:1;s:20:\"publish_testimonials\";b:1;s:29:\"delete_published_testimonials\";b:1;s:7:\"level_2\";b:1;}}s:13:\"houzez_seller\";a:2:{s:4:\"name\";s:6:\"Seller\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:13:\"read_property\";b:1;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_2\";b:1;}}s:12:\"houzez_owner\";a:2:{s:4:\"name\";s:5:\"Owner\";s:12:\"capabilities\";a:14:{s:4:\"read\";b:0;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:0;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_2\";b:1;}}s:14:\"houzez_manager\";a:2:{s:4:\"name\";s:7:\"Manager\";s:12:\"capabilities\";a:14:{s:4:\"read\";b:0;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"read_property\";b:1;s:13:\"publish_posts\";b:0;s:13:\"edit_property\";b:1;s:17:\"create_properties\";b:1;s:15:\"edit_properties\";b:1;s:17:\"delete_properties\";b:1;s:25:\"edit_published_properties\";b:1;s:18:\"publish_properties\";b:1;s:27:\"delete_published_properties\";b:1;s:25:\"delete_private_properties\";b:1;s:7:\"level_5\";b:1;}}}','no'),(1318246,'e9332cec6_eael_updated_at','1656030088','no'),(417188,'eael_editor_updated_at','1656030088','yes'),(1250948,'5b09d4945_eael_updated_at','1656030088','no'),(529213,'dd2bc0d4b_elements','a:0:{}','yes'),(529214,'dd2bc0d4b_custom_js','','yes'),(529215,'dd2bc0d4b_updated_at','1623201995','yes'),(372269,'_transient_15019c66d_elements','a:0:{}','yes'),(365087,'_transient_e0e620acd_custom_js','','yes'),(365086,'_transient_e0e620acd_elements','a:0:{}','yes'),(363578,'_transient_9e7343b9a_elements','a:0:{}','yes'),(363579,'_transient_9e7343b9a_custom_js','','yes'),(363580,'_transient_9e7343b9a_updated_at','1605059632','yes'),(363605,'_transient_cd8752dc7_elements','a:0:{}','yes'),(363606,'_transient_cd8752dc7_custom_js','','yes'),(363607,'_transient_cd8752dc7_updated_at','1605059632','yes'),(1311503,'fc29b96a2_eael_updated_at','1656030088','no'),(383635,'_transient_533f5bf17_elements','a:0:{}','yes'),(383636,'_transient_533f5bf17_custom_js','','yes'),(383637,'_transient_533f5bf17_updated_at','1605059632','yes'),(372943,'_transient_06a943c59_elements','a:0:{}','yes'),(372944,'_transient_06a943c59_custom_js','','yes'),(372945,'_transient_06a943c59_updated_at','1605059632','yes'),(362540,'_transient_6b39d183c_elements','a:0:{}','yes'),(362541,'_transient_6b39d183c_custom_js','','yes'),(362542,'_transient_6b39d183c_updated_at','1605059632','yes'),(374158,'_transient_9dd626292_elements','a:0:{}','yes'),(383263,'_transient_4f0fe9b75_updated_at','1603149173','yes'),(372270,'_transient_15019c66d_custom_js','','yes'),(372271,'_transient_15019c66d_updated_at','1605059632','yes'),(362057,'calendar_category_children','a:0:{}','yes'),(362058,'_transient_f0d06e05d_elements','a:0:{}','yes'),(362059,'_transient_f0d06e05d_custom_js','','yes'),(362060,'_transient_f0d06e05d_updated_at','1605059632','yes'),(362154,'widget_sticky-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(362172,'_transient_1af74f4bb_elements','a:1:{i:7;s:12:\"creative-btn\";}','yes'),(362173,'_transient_1af74f4bb_custom_js','','yes'),(362174,'_transient_1af74f4bb_updated_at','1605059632','yes'),(362301,'_transient_8d9dab511_elements','a:0:{}','yes'),(362302,'_transient_8d9dab511_custom_js','','yes'),(362303,'_transient_8d9dab511_updated_at','1605059632','yes'),(362787,'_transient_1cef1a677_elements','a:0:{}','yes'),(362788,'_transient_1cef1a677_custom_js','','yes'),(362789,'_transient_1cef1a677_updated_at','1605059632','yes'),(383261,'_transient_4f0fe9b75_elements','a:0:{}','yes'),(383262,'_transient_4f0fe9b75_custom_js','','yes'),(1062416,'wpl_version','4.12.1','yes'),(1252130,'bac6998bf_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(1252132,'bac6998bf_eael_updated_at','1656030088','no'),(419717,'86f139116_elements','a:0:{}','yes'),(419718,'86f139116_custom_js','','yes'),(419719,'86f139116_updated_at','1623201995','yes'),(1252127,'1af74f4bb_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(409244,'_transient_9669f2312_elements','a:0:{}','yes'),(409245,'_transient_9669f2312_custom_js','','yes'),(409246,'_transient_9669f2312_updated_at','1605059632','yes'),(1294307,'6ed4a5664_eael_updated_at','1656030088','no'),(1328534,'89ce8d4e2_eael_updated_at','1651360580','no'),(1269513,'a6595b77a_eael_updated_at','1651360580','no'),(859118,'9292705cb_elements','a:0:{}','yes'),(859119,'9292705cb_custom_js','','yes'),(859120,'9292705cb_updated_at','1623201995','yes'),(659269,'elementor_1_elementor_updater_batch_947af4abf573c7c012da0430e68b','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:42:\"_v_3_2_0_migrate_breakpoints_to_new_system\";}}}','no'),(1896846,'_transient_timeout_tsf_sitemap_5_1_en_us','1657719501','no'),(1896847,'_transient_tsf_sitemap_5_1_en_us','<!-- Sitemap is generated on 2022-07-06 13:38:21 GMT -->\n	<url>\n		<loc>https://lantern-realty.com/</loc>\n		<lastmod>2021-12-10T13:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/privacy-policy/</loc>\n		<lastmod>2018-08-25T19:42+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/deana-petty/</loc>\n		<lastmod>2020-10-18T00:09+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-listings/</loc>\n		<lastmod>2018-08-24T17:04+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/the-lantern-team/</loc>\n		<lastmod>2022-06-24T00:21+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/paula-severt/</loc>\n		<lastmod>2020-09-19T20:32+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/annie-boger/</loc>\n		<lastmod>2022-02-18T01:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/chris-puckett/</loc>\n		<lastmod>2020-09-19T20:32+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/elizabeth-brown/</loc>\n		<lastmod>2020-09-19T19:18+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amy-evans/</loc>\n		<lastmod>2020-09-19T19:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ethan-stillinger/</loc>\n		<lastmod>2020-09-19T20:11+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/recently-sold/</loc>\n		<lastmod>2018-09-02T19:33+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/home-buying-calculators/</loc>\n		<lastmod>2019-11-04T21:30+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jason-overcash/</loc>\n		<lastmod>2020-09-19T19:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/homes-for-sale-in-rowan-county/</loc>\n		<lastmod>2018-09-02T19:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/contact-lantern/</loc>\n		<lastmod>2018-09-04T23:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jeremy-aldridge/</loc>\n		<lastmod>2020-09-19T19:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/crystal-cauble/</loc>\n		<lastmod>2020-09-19T19:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kim-drakulich/</loc>\n		<lastmod>2021-11-22T00:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melissa-jackling/</loc>\n		<lastmod>2020-09-19T19:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/lynnette-gearing/</loc>\n		<lastmod>2020-09-19T19:31+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/lindsey-mccauley/</loc>\n		<lastmod>2020-09-19T19:40+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sheila-allison/</loc>\n		<lastmod>2020-10-17T23:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/casey-barber/</loc>\n		<lastmod>2020-09-19T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melissa-lacroix/</loc>\n		<lastmod>2020-09-20T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/laura-overcash/</loc>\n		<lastmod>2020-09-19T19:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rick-rhew/</loc>\n		<lastmod>2020-09-19T20:10+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/john-suther/</loc>\n		<lastmod>2020-09-19T20:11+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/todd-wooley/</loc>\n		<lastmod>2020-09-19T20:12+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/robbie-bendig/</loc>\n		<lastmod>2020-09-19T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jessica-cloward/</loc>\n		<lastmod>2022-02-18T01:29+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/christine-jalynski/</loc>\n		<lastmod>2020-09-19T19:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/helen-matthews/</loc>\n		<lastmod>2021-09-04T01:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/julie-nutter/</loc>\n		<lastmod>2022-02-18T01:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/bret-leonard/</loc>\n		<lastmod>2020-09-19T19:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kelly-keller/</loc>\n		<lastmod>2020-09-19T19:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-partners/</loc>\n		<lastmod>2021-12-10T13:27+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/brenda-brown/</loc>\n		<lastmod>2020-09-20T15:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/toni-benton/</loc>\n		<lastmod>2020-09-19T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/evonne-caudill/</loc>\n		<lastmod>2020-09-19T19:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/yira-garcia/</loc>\n		<lastmod>2020-09-19T19:31+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/cathy-hager/</loc>\n		<lastmod>2020-09-19T19:32+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/hosanna-hill/</loc>\n		<lastmod>2020-09-19T19:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/deanna-miltz/</loc>\n		<lastmod>2020-09-19T19:40+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kimberly-trask/</loc>\n		<lastmod>2020-09-19T20:13+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/brianne-watson/</loc>\n		<lastmod>2022-06-24T00:03+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/april-bird/</loc>\n		<lastmod>2021-02-18T14:12+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/deborah-griffin/</loc>\n		<lastmod>2020-09-19T19:31+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/marguerite-keller/</loc>\n		<lastmod>2022-05-26T01:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melissa-yates/</loc>\n		<lastmod>2020-09-19T20:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jody-clodfelter/</loc>\n		<lastmod>2020-09-19T19:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amanda-cody/</loc>\n		<lastmod>2020-10-17T23:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/mike-fullerton/</loc>\n		<lastmod>2020-10-17T23:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/susan-starnes/</loc>\n		<lastmod>2020-09-19T20:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/tricia-strickland/</loc>\n		<lastmod>2020-09-19T20:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/min-zhang/</loc>\n		<lastmod>2022-01-06T23:09+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ashley-ferlauto/</loc>\n		<lastmod>2022-05-26T01:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/my-account/</loc>\n		<lastmod>2020-05-01T13:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/registration/</loc>\n		<lastmod>2020-05-01T13:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zzlantern-offices/</loc>\n		<lastmod>2020-09-19T18:54+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kim-sadler/</loc>\n		<lastmod>2020-09-19T19:11+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zzlantern-offices-2/</loc>\n		<lastmod>2020-10-19T00:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sabine-amoakon/</loc>\n		<lastmod>2020-09-20T13:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/cheryl-baxter/</loc>\n		<lastmod>2020-09-20T14:02+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dale-bullock/</loc>\n		<lastmod>2021-02-08T00:19+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/emily-chandler/</loc>\n		<lastmod>2020-09-20T14:09+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/tracie-clark/</loc>\n		<lastmod>2020-09-20T14:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/michael-davis/</loc>\n		<lastmod>2020-09-20T14:24+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/australia-dunphy/</loc>\n		<lastmod>2020-09-20T14:30+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ivonne-erion/</loc>\n		<lastmod>2020-09-20T14:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/conard-haywood/</loc>\n		<lastmod>2020-09-20T14:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/donna-hiner/</loc>\n		<lastmod>2020-09-20T14:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/cheyenne-kidd/</loc>\n		<lastmod>2020-09-20T14:53+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dawn-lamb/</loc>\n		<lastmod>2020-09-20T14:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/connie-merrell/</loc>\n		<lastmod>2020-09-20T15:03+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rachel-monrad/</loc>\n		<lastmod>2020-09-20T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rodney-queen/</loc>\n		<lastmod>2020-09-20T15:10+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kelly-robinson/</loc>\n		<lastmod>2020-09-20T15:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/hayley-rogers/</loc>\n		<lastmod>2020-09-20T15:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sarah-romesburg/</loc>\n		<lastmod>2020-09-20T15:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/chelsi-sherin/</loc>\n		<lastmod>2020-09-20T15:23+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/holden-sides/</loc>\n		<lastmod>2022-02-18T03:08+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rick-wilson/</loc>\n		<lastmod>2021-02-18T14:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/crm/</loc>\n		<lastmod>2020-10-10T18:22+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-kannapolis/</loc>\n		<lastmod>2020-10-19T00:52+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/</loc>\n		<lastmod>2022-05-26T00:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-salisbury/</loc>\n		<lastmod>2020-10-19T01:01+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-harrisburg/</loc>\n		<lastmod>2020-10-19T01:04+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-albemarle/</loc>\n		<lastmod>2020-10-19T01:08+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-mooresville/</loc>\n		<lastmod>2020-11-11T01:53+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/new-homepage/</loc>\n		<lastmod>2020-10-19T02:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jenna-cook/</loc>\n		<lastmod>2020-11-11T01:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/liz-hallman/</loc>\n		<lastmod>2020-11-11T01:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amanda-lambert/</loc>\n		<lastmod>2021-02-18T14:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sherri-wiles-argabright/</loc>\n		<lastmod>2020-11-11T01:51+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/courtney-sloan-holshouser/</loc>\n		<lastmod>2020-12-01T01:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/paige-wiser/</loc>\n		<lastmod>2021-01-28T00:52+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/taylor-david-mcclure/</loc>\n		<lastmod>2021-01-28T00:52+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/maranda-allen/</loc>\n		<lastmod>2021-01-28T00:51+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/brenda-sue-bingham/</loc>\n		<lastmod>2021-02-18T14:29+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/janice-cannon/</loc>\n		<lastmod>2021-01-29T00:59+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/michele-tichnor/</loc>\n		<lastmod>2021-02-08T00:30+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dominique-walter/</loc>\n		<lastmod>2021-02-08T00:33+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ivan-henrickson/</loc>\n		<lastmod>2022-02-18T01:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/alicia-love-hammel/</loc>\n		<lastmod>2021-02-08T00:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-asheville/</loc>\n		<lastmod>2021-02-24T01:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/pam-lambert/</loc>\n		<lastmod>2021-02-24T01:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/ashley-uttecht/</loc>\n		<lastmod>2021-02-24T01:11+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/michael-farlow/</loc>\n		<lastmod>2021-08-01T21:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/katherine-lawing/</loc>\n		<lastmod>2022-02-18T01:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/tammy-fox/</loc>\n		<lastmod>2021-02-24T02:00+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/viviana-martinez-campos/</loc>\n		<lastmod>2021-03-14T22:24+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/taina-shaw/</loc>\n		<lastmod>2021-03-14T22:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/wendell-rummage/</loc>\n		<lastmod>2022-06-24T01:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dawn-wetherbee/</loc>\n		<lastmod>2021-08-01T21:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/julie-arader/</loc>\n		<lastmod>2021-11-22T00:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/chelsea-trexler/</loc>\n		<lastmod>2021-08-01T21:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sandra-bean/</loc>\n		<lastmod>2021-06-09T01:00+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/katie-abell/</loc>\n		<lastmod>2021-06-09T01:03+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/rochelle-shanae-ogburn/</loc>\n		<lastmod>2021-06-09T01:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/david-g-cannon/</loc>\n		<lastmod>2021-08-01T21:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/karie-sturdevant/</loc>\n		<lastmod>2021-09-04T01:51+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amber-tsumas/</loc>\n		<lastmod>2021-08-01T22:01+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/doreen-shaughnessy/</loc>\n		<lastmod>2021-08-01T22:21+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/kathy-gurney/</loc>\n		<lastmod>2021-08-01T22:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/claire-sonnier/</loc>\n		<lastmod>2021-08-01T22:31+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/dawn-fisher/</loc>\n		<lastmod>2022-06-24T00:44+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/iiona-kenrick/</loc>\n		<lastmod>2021-09-04T01:59+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/casey-paige-maness/</loc>\n		<lastmod>2021-09-04T02:02+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/cecilia-maria-ferrari/</loc>\n		<lastmod>2021-09-04T02:04+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jenna-stoll/</loc>\n		<lastmod>2021-09-04T02:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/misty-lynn-moss/</loc>\n		<lastmod>2021-09-04T02:10+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/properties/</loc>\n		<lastmod>2021-11-05T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/for-sale/</loc>\n		<lastmod>2021-11-05T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/for-rent/</loc>\n		<lastmod>2021-11-05T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/vacation-rental/</loc>\n		<lastmod>2021-11-05T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/stephanie-e-morgan/</loc>\n		<lastmod>2021-11-22T00:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/evelin-lisseth-hernandez/</loc>\n		<lastmod>2021-11-22T00:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/lezli-rae-leath/</loc>\n		<lastmod>2021-11-22T00:52+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/tan-crawford/</loc>\n		<lastmod>2021-11-22T00:54+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/erin-hyman/</loc>\n		<lastmod>2021-11-22T00:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/carmady-king-kruger/</loc>\n		<lastmod>2021-11-22T01:24+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/brittney-steele/</loc>\n		<lastmod>2022-02-18T02:10+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/aaron-forsyth/</loc>\n		<lastmod>2022-02-18T02:22+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/charity-k-meachum/</loc>\n		<lastmod>2022-02-18T02:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/amy-bundy/</loc>\n		<lastmod>2022-02-18T03:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/chad-rothlin/</loc>\n		<lastmod>2022-02-18T02:18+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jamie-stewart/</loc>\n		<lastmod>2022-02-18T02:20+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melissa-shannon-morefield-valley/</loc>\n		<lastmod>2022-05-26T01:53+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/stephanie-knight/</loc>\n		<lastmod>2022-02-18T02:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/benjamin-allen-surratt/</loc>\n		<lastmod>2022-02-18T02:41+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/colleen-crane/</loc>\n		<lastmod>2022-04-30T22:09+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/sarah-grace-horn/</loc>\n		<lastmod>2022-02-18T02:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-lexington/</loc>\n		<lastmod>2022-04-20T02:01+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/the-lantern-team-new/</loc>\n		<lastmod>2022-04-30T23:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-offices/lantern-tennessee/</loc>\n		<lastmod>2022-05-26T01:12+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/jessica-eudy/</loc>\n		<lastmod>2022-06-24T00:29+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/melinda-r-mesimerr/</loc>\n		<lastmod>2022-06-24T00:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/megan-owens/</loc>\n		<lastmod>2022-06-24T00:40+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/colleen-viteri/</loc>\n		<lastmod>2022-06-24T00:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/alexis-devine-smith/</loc>\n		<lastmod>2022-06-24T00:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/mitzi-mcdaniel-smith/</loc>\n		<lastmod>2022-06-24T01:02+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agent/andrew-jason-wetherbee/</loc>\n		<lastmod>2022-06-24T01:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-53/</loc>\n		<lastmod>2022-07-06T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-zoom-link-team-meeting-what-is-a-2-1-buydown-w-terry-whitesell-of-fairway-mortgage-wednesday-july-6-at-11am/</loc>\n		<lastmod>2022-07-05T13:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/buffini-mid-year-update-2022-predictions/</loc>\n		<lastmod>2022-06-23T15:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-52/</loc>\n		<lastmod>2022-06-20T19:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/warning-warning/</loc>\n		<lastmod>2022-06-10T12:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-51/</loc>\n		<lastmod>2022-06-08T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/last-weeks-classes/</loc>\n		<lastmod>2022-06-07T20:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-zoom-meeting-dotloop-thursday-jun-2-2022-0900-am/</loc>\n		<lastmod>2022-06-01T15:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-zoom-meeting-client-care-w-sarah-romesburg-wednesday-jun-1-2022-1100-am/</loc>\n		<lastmod>2022-05-31T19:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-50/</loc>\n		<lastmod>2022-05-27T18:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-for-lantern-realty-airbnb-class-with-emily-and-chris-wednesday-may-25-2022-1000-am/</loc>\n		<lastmod>2022-05-24T14:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-49/</loc>\n		<lastmod>2022-05-18T18:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-real-estate-investor-syndication-meeting-at-4pm/</loc>\n		<lastmod>2022-05-17T12:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-48/</loc>\n		<lastmod>2022-05-16T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-47/</loc>\n		<lastmod>2022-05-09T14:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-deposits-terminations-disputes-05-03-2022/</loc>\n		<lastmod>2022-05-04T16:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-05-04-2022/</loc>\n		<lastmod>2022-05-04T16:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-meeting-zoom-invite-with-ryan-ivory-arc-mortgage-and-rates-these-days/</loc>\n		<lastmod>2022-05-03T18:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-part-2-2/</loc>\n		<lastmod>2022-05-03T16:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/deposits-terminations-disputes-class/</loc>\n		<lastmod>2022-05-03T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-invite-deposits-terminations-disputes-may-3-at-3/</loc>\n		<lastmod>2022-05-02T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/videos-of-this-weeks-classes/</loc>\n		<lastmod>2022-04-29T21:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-loves/</loc>\n		<lastmod>2022-04-29T12:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-loves-zoom-link-april-28-at-10-am/</loc>\n		<lastmod>2022-04-27T22:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-zoom-link-for-commercial-basics-buyer-clients-with-chris-puckett-april-28-at-9-am/</loc>\n		<lastmod>2022-04-27T22:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-zoom-invite-build-on-your-land-w-true-homes-wednesday-apr-27-2022-0900-am/</loc>\n		<lastmod>2022-04-26T21:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-46/</loc>\n		<lastmod>2022-04-25T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-raleigh/</loc>\n		<lastmod>2022-04-20T01:19+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-tennessee/</loc>\n		<lastmod>2022-05-26T00:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-45/</loc>\n		<lastmod>2022-04-18T19:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-44/</loc>\n		<lastmod>2022-04-18T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-43/</loc>\n		<lastmod>2022-04-18T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/house-flipping-101/</loc>\n		<lastmod>2022-04-14T17:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-zoom-meeting-invite-house-flipping-101-apr-14-2022-1100-am/</loc>\n		<lastmod>2022-04-14T13:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/land-class-amanda-lambert/</loc>\n		<lastmod>2022-04-12T12:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-lunch-n-learn-zoom-link-thursday-april-7-at-11-am/</loc>\n		<lastmod>2022-04-06T16:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-42/</loc>\n		<lastmod>2022-04-06T01:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-zoom-invite-wednesday-april-6-at-1100-am/</loc>\n		<lastmod>2022-04-06T00:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-41/</loc>\n		<lastmod>2022-04-04T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/triad-mls-billing/</loc>\n		<lastmod>2022-03-31T12:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/basics-of-commercial-real-estate-class-3-30-22/</loc>\n		<lastmod>2022-03-30T14:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-basics-of-commercial-re-w-chris-puckett-wednesday-mar-30-2022-0900-am/</loc>\n		<lastmod>2022-03-29T21:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/nc-coastal-mls-2/</loc>\n		<lastmod>2022-03-29T20:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/realtor-mental-healtgh/</loc>\n		<lastmod>2022-03-29T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/contracts-to-close-class-3-24-22-by-sarah-romesburg/</loc>\n		<lastmod>2022-03-26T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/nc-coastal-mls/</loc>\n		<lastmod>2022-03-25T14:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-for-contracts-to-closing-w-sarah-romesburg-thurs-mar-24-2022-1000-am/</loc>\n		<lastmod>2022-03-24T00:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-sewer-allocation-discussion/</loc>\n		<lastmod>2022-03-22T18:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-meeting-invite-for-sewer-allocation-tuesday-mar-22-2022-1100-am/</loc>\n		<lastmod>2022-03-21T15:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/education-calendar-2/</loc>\n		<lastmod>2022-03-09T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-building-should-i-join-a-team-class-3-1-22/</loc>\n		<lastmod>2022-03-07T16:59+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/homebot-class/</loc>\n		<lastmod>2022-03-07T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/updated-independent-contractor-agreement-terms/</loc>\n		<lastmod>2022-02-28T15:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/free-genup-in-march/</loc>\n		<lastmod>2022-02-24T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/homebot-for-lantern-you-do-not-want-to-miss-this/</loc>\n		<lastmod>2022-02-23T23:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-lexington/</loc>\n		<lastmod>2022-04-20T01:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/1099-updates/</loc>\n		<lastmod>2022-02-15T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-for-ribbon-training-class-feb-16-2022-1000-am/</loc>\n		<lastmod>2022-02-15T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-announcements/</loc>\n		<lastmod>2022-02-14T18:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/1031-exchange-class/</loc>\n		<lastmod>2022-02-09T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/1031-exchange-zoom-link-tuesday-feb-8-at-900-am/</loc>\n		<lastmod>2022-02-07T17:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-guaranteed-rate-crm-class-wednesday-feb-2nd-at-1100-am/</loc>\n		<lastmod>2022-02-02T01:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-14/</loc>\n		<lastmod>2022-01-31T17:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-13/</loc>\n		<lastmod>2022-01-31T14:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-40/</loc>\n		<lastmod>2022-01-24T19:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/renovation-loan-video-class/</loc>\n		<lastmod>2022-01-20T17:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-39/</loc>\n		<lastmod>2022-01-18T22:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-38/</loc>\n		<lastmod>2022-01-17T16:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-37/</loc>\n		<lastmod>2022-01-15T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/upcoming-lantern-realty-classes-and-education-calendar-for-january-2022/</loc>\n		<lastmod>2022-01-13T19:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/cma-zoom-only-class-invite-for-thursday-jan-13-at-1000-am-until/</loc>\n		<lastmod>2022-01-12T19:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/tuesday-morning-think-tank-meetings-3/</loc>\n		<lastmod>2022-01-12T16:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/tuesday-morning-think-tank-meetings/</loc>\n		<lastmod>2022-01-12T16:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/tuesday-morning-think-tank-meetings-2/</loc>\n		<lastmod>2022-01-12T16:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-new-home-construction-class-for-lantern-realty/</loc>\n		<lastmod>2022-01-11T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-ribbon-zoom-class-thursday-jan-6-at-900-am-2/</loc>\n		<lastmod>2022-01-06T02:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-ribbon-zoom-class-thursday-jan-6-at-900-am/</loc>\n		<lastmod>2022-01-05T17:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-team-meeting-2/</loc>\n		<lastmod>2022-01-05T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-only-team-safety-meeting-with-wendell-wednesday-jan-5-2022-1100-am/</loc>\n		<lastmod>2022-01-04T21:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/2022-marketing-planning-meeting/</loc>\n		<lastmod>2021-12-13T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/venue-change-2022-marketing-meeting/</loc>\n		<lastmod>2021-12-10T17:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/december-14th-marketing-meeting/</loc>\n		<lastmod>2021-12-07T21:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/thursday-dec-2nd/</loc>\n		<lastmod>2021-12-02T01:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/classes-on-youtube/</loc>\n		<lastmod>2021-12-01T21:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-zoom-link-wednesday-december-dec-1-2021-1100-am/</loc>\n		<lastmod>2021-12-01T00:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-36/</loc>\n		<lastmod>2021-11-30T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-35/</loc>\n		<lastmod>2021-11-22T15:00+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-to-dont-do-stupid-nov-9-2021-1100-am/</loc>\n		<lastmod>2021-11-08T21:00+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-34/</loc>\n		<lastmod>2021-11-08T13:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/here-is-a-link-to-todays-ncrec-class/</loc>\n		<lastmod>2021-11-03T20:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-ncrec-guest-zoom-team-meeting-wednesday-november-3-at-11-am/</loc>\n		<lastmod>2021-11-02T13:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-33/</loc>\n		<lastmod>2021-11-01T13:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/ninja-selling-course/</loc>\n		<lastmod>2021-10-28T20:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-32/</loc>\n		<lastmod>2021-10-25T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/you-tube-video-social-media-class-w-larry-laughter/</loc>\n		<lastmod>2021-10-21T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/marketing-online-w-larry-laughter-zoom-only-oct-21-at-1000-am/</loc>\n		<lastmod>2021-10-20T16:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-how-to-work-w-sellers/</loc>\n		<lastmod>2021-10-14T18:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-for-kindle-how-to-work-with-sellers-thursday-october-14-at-10-a-m/</loc>\n		<lastmod>2021-10-13T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-31/</loc>\n		<lastmod>2021-10-13T15:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-30/</loc>\n		<lastmod>2021-10-11T12:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/2022-goal-planning-class/</loc>\n		<lastmod>2021-10-07T21:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-working-w-buyers-w-cathy-hager/</loc>\n		<lastmod>2021-10-07T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-meeting-invite-for-kindle-working-with-buyers-oct-7-at-10-a-m/</loc>\n		<lastmod>2021-10-06T21:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-part-2/</loc>\n		<lastmod>2021-10-04T18:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-29/</loc>\n		<lastmod>2021-10-04T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/october-2021-team-meeting-rudy-king-fairway-mortgage-reverse-mortgages/</loc>\n		<lastmod>2021-09-28T20:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-marketing-your-business-2/</loc>\n		<lastmod>2021-09-28T20:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-28/</loc>\n		<lastmod>2021-09-28T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-marketing-your-business/</loc>\n		<lastmod>2021-09-23T13:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-27/</loc>\n		<lastmod>2021-09-22T14:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-26/</loc>\n		<lastmod>2021-09-17T21:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-lead-generation-zoom-in-person-thursday-septemeber-16-at-10-am/</loc>\n		<lastmod>2021-09-15T17:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-25/</loc>\n		<lastmod>2021-09-08T20:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-w-rudy-king-fairway-mortgage-reverse-mortgage/</loc>\n		<lastmod>2021-08-31T16:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-24/</loc>\n		<lastmod>2021-08-30T12:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-23/</loc>\n		<lastmod>2021-08-24T22:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-22/</loc>\n		<lastmod>2021-08-16T19:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/contractor-and-handy-man/</loc>\n		<lastmod>2021-08-10T12:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-for-the-weekend-2/</loc>\n		<lastmod>2021-08-09T17:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-for-the-weekend/</loc>\n		<lastmod>2021-08-07T13:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/is-forbearance-a-material-fact/</loc>\n		<lastmod>2021-08-05T12:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-realty-team-meeting-invite-wednesday-august-4-at-1130-a-m/</loc>\n		<lastmod>2021-08-03T17:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-21/</loc>\n		<lastmod>2021-08-02T18:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-12/</loc>\n		<lastmod>2021-07-30T20:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-11/</loc>\n		<lastmod>2021-07-30T17:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-20/</loc>\n		<lastmod>2021-07-26T19:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/venmo-quarterly-dues-2/</loc>\n		<lastmod>2021-07-25T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/2021-2022-ncar-doc-changes-class-link/</loc>\n		<lastmod>2021-07-23T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/coaching-event/</loc>\n		<lastmod>2021-07-22T18:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/venmo-quarterly-dues/</loc>\n		<lastmod>2021-07-22T12:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/announcement-sending-dues-payments-by-venmo-2/</loc>\n		<lastmod>2021-07-21T17:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/announcement-sending-dues-payments-by-venmo/</loc>\n		<lastmod>2021-07-21T13:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dotloop-training-opportunities/</loc>\n		<lastmod>2021-07-20T12:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-10/</loc>\n		<lastmod>2021-07-19T19:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-9/</loc>\n		<lastmod>2021-07-19T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lunch-n-learn-postponed-lantern-news-notes/</loc>\n		<lastmod>2021-07-14T22:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/rsvp-request-lantern-news-notes/</loc>\n		<lastmod>2021-07-14T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/broker-qa-and-team-meeting-zoom-links/</loc>\n		<lastmod>2021-07-14T00:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-8/</loc>\n		<lastmod>2021-07-08T18:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-zoom-class-for-new-forms-change-4/</loc>\n		<lastmod>2021-07-07T18:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-zoom-class-for-new-forms-change-2/</loc>\n		<lastmod>2021-07-07T17:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-zoom-class-for-new-forms-change-3/</loc>\n		<lastmod>2021-07-07T17:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-zoom-class-for-new-forms-change/</loc>\n		<lastmod>2021-07-07T15:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lead-generation-class/</loc>\n		<lastmod>2021-07-06T15:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-7/</loc>\n		<lastmod>2021-07-05T12:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/new-2021-2022-docs-from-ncar/</loc>\n		<lastmod>2021-07-01T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lead-generation-reminder-tuesday-june-22-at-1130-a-m-zoom-link/</loc>\n		<lastmod>2021-06-21T18:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/ribbon-agent-dashboard-info/</loc>\n		<lastmod>2021-06-15T12:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/sales-production-class-with-fairway-mortgage-tuesday-june-15-11-a-m-2/</loc>\n		<lastmod>2021-06-14T16:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/sales-production-class-with-fairway-mortgage-tuesday-june-15-11-a-m/</loc>\n		<lastmod>2021-06-11T16:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dotloop-updates/</loc>\n		<lastmod>2021-06-11T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/trio-class/</loc>\n		<lastmod>2021-06-10T15:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/ribbon-class-link/</loc>\n		<lastmod>2021-06-09T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-ribbon-class-tuesday-june-8-at-945-a-m-lantern-realty/</loc>\n		<lastmod>2021-06-07T20:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-19/</loc>\n		<lastmod>2021-06-07T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-invite-for-broker-qa-for-thursday-june-3-at-10-am/</loc>\n		<lastmod>2021-06-02T19:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-link-for-lantern-realty-team-meeting-wednesday-june-2/</loc>\n		<lastmod>2021-06-01T13:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-18/</loc>\n		<lastmod>2021-06-01T13:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-for-lease-to-own-class-thursday-may-27-at-6-pm/</loc>\n		<lastmod>2021-05-26T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-17/</loc>\n		<lastmod>2021-05-24T20:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-meeting-invite-for-client-care-class-tuesday-10-am-may-25/</loc>\n		<lastmod>2021-05-24T20:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/cma-class-postponed/</loc>\n		<lastmod>2021-05-18T13:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/mock-home-inspection-wednesday-may-19-4-pm/</loc>\n		<lastmod>2021-05-17T19:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-16/</loc>\n		<lastmod>2021-05-15T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/land-prep-class-link/</loc>\n		<lastmod>2021-05-12T14:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/law-enforcement-week/</loc>\n		<lastmod>2021-05-12T12:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-mentorship-program/</loc>\n		<lastmod>2021-05-11T13:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-for-land-prep-class-for-may-11-at-10-am/</loc>\n		<lastmod>2021-05-10T19:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-15/</loc>\n		<lastmod>2021-05-08T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-double-closings-assignments-ethics-opinion/</loc>\n		<lastmod>2021-05-05T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-5-5-11am-update-2/</loc>\n		<lastmod>2021-05-04T14:18+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-5-5-11am-update/</loc>\n		<lastmod>2021-05-03T17:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-6/</loc>\n		<lastmod>2021-05-03T15:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/broker-q-a-link/</loc>\n		<lastmod>2021-04-29T17:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/zoom-invite-for-broker-qa-w-liz-hallman-april-29-at-10-a-m/</loc>\n		<lastmod>2021-04-28T15:47+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-sign-up-link-for-mock-home-inspections-2/</loc>\n		<lastmod>2021-04-26T20:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-sign-up-link-for-mock-home-inspections/</loc>\n		<lastmod>2021-04-23T16:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/tomorrows-men-of-lantern-event/</loc>\n		<lastmod>2021-04-21T22:27+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-13/</loc>\n		<lastmod>2021-04-19T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-14/</loc>\n		<lastmod>2021-04-19T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/deeds-permits-class/</loc>\n		<lastmod>2021-04-16T12:38+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-new-training-resources/</loc>\n		<lastmod>2021-04-13T12:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-5/</loc>\n		<lastmod>2021-04-12T17:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/forms-class-youtube-link/</loc>\n		<lastmod>2021-04-07T16:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/escalator-clauses/</loc>\n		<lastmod>2021-04-03T13:08+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-12/</loc>\n		<lastmod>2021-04-02T12:49+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-4/</loc>\n		<lastmod>2021-03-29T20:47+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-zoom-link-for-tuesday-classes-march-23-contracts-to-close-10-am-and-new-construction-1pm/</loc>\n		<lastmod>2021-03-25T13:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/important-news/</loc>\n		<lastmod>2021-03-24T16:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-11/</loc>\n		<lastmod>2021-03-21T13:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-10/</loc>\n		<lastmod>2021-03-11T14:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/link-to-power-notes-class-by-laura-overcash/</loc>\n		<lastmod>2021-03-09T19:51+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-video/</loc>\n		<lastmod>2021-03-03T22:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-3-3-11am/</loc>\n		<lastmod>2021-03-01T14:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-9/</loc>\n		<lastmod>2021-02-26T16:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-asheville/</loc>\n		<lastmod>2021-02-24T00:48+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-marketing/</loc>\n		<lastmod>2021-02-22T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/class-thur-2-18-1pm-how-to-help-your-client-buy-land/</loc>\n		<lastmod>2021-02-17T22:28+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fair-housing-professional-standards/</loc>\n		<lastmod>2021-02-17T13:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/forms-class-today-1pm/</loc>\n		<lastmod>2021-02-16T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-8/</loc>\n		<lastmod>2021-02-14T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/instagram-class-video/</loc>\n		<lastmod>2021-02-11T15:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-negotiation-link/</loc>\n		<lastmod>2021-02-09T19:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/canva-com-class-link/</loc>\n		<lastmod>2021-02-09T18:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-9-9-1pm-the-art-of-negotiations/</loc>\n		<lastmod>2021-02-08T18:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/9-9-canva-com-class-presented-by-jenna-cook-930am/</loc>\n		<lastmod>2021-02-08T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-7/</loc>\n		<lastmod>2021-02-06T14:50+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-pricing-cma-link/</loc>\n		<lastmod>2021-02-02T23:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-2-3-1130am/</loc>\n		<lastmod>2021-02-02T19:47+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-3/</loc>\n		<lastmod>2021-01-25T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-class-how-to-work-w-buyers-10am-1-19/</loc>\n		<lastmod>2021-01-18T18:15+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes-2/</loc>\n		<lastmod>2021-01-17T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/q1-dues/</loc>\n		<lastmod>2021-01-15T15:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/upcoming-classes/</loc>\n		<lastmod>2021-01-13T16:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-6/</loc>\n		<lastmod>2021-01-11T15:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/1099s/</loc>\n		<lastmod>2021-01-08T13:45+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-1-6/</loc>\n		<lastmod>2021-01-05T16:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/education-calendar/</loc>\n		<lastmod>2021-01-05T16:05+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/kindle-lead-generation-data-base/</loc>\n		<lastmod>2021-01-04T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/fwd-zoom/</loc>\n		<lastmod>2021-01-04T15:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-2021-edition/</loc>\n		<lastmod>2021-01-02T14:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/call-time-meeting/</loc>\n		<lastmod>2020-12-29T14:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-education-committee-meeting/</loc>\n		<lastmod>2020-12-29T14:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/merry-christmas-news-notes/</loc>\n		<lastmod>2020-12-24T13:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-team-meeting/</loc>\n		<lastmod>2020-12-16T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-12-16-1130am/</loc>\n		<lastmod>2020-12-15T20:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/canva-instagram-classes-cancelled/</loc>\n		<lastmod>2020-12-15T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/canva-com-class-w-jenna-cook-invite-jan-15th-10am/</loc>\n		<lastmod>2020-12-14T16:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-news-notes/</loc>\n		<lastmod>2020-12-12T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-team-meeting-cancelled/</loc>\n		<lastmod>2020-12-02T14:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dec-3rd-130pm-class-accounting-for-real-estate-agents-w-mark-dalton/</loc>\n		<lastmod>2020-12-01T14:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-5/</loc>\n		<lastmod>2020-12-01T13:35+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/sarah-romesburgs-listing-class-tuesday-at-10am/</loc>\n		<lastmod>2020-11-30T17:57+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/nc-mask-mandate/</loc>\n		<lastmod>2020-11-24T21:39+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-4/</loc>\n		<lastmod>2020-11-21T19:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/instagram-class-2/</loc>\n		<lastmod>2020-11-18T14:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/nar-code-of-ethics-change/</loc>\n		<lastmod>2020-11-17T13:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-3/</loc>\n		<lastmod>2020-11-16T14:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/instagram-class/</loc>\n		<lastmod>2020-11-16T14:17+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/miracle-morning-discussion-3/</loc>\n		<lastmod>2020-11-12T15:25+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dotloop-training-2/</loc>\n		<lastmod>2020-11-11T18:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/miracle-morning-discussion-2/</loc>\n		<lastmod>2020-11-11T16:19+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/miracle-morning-discussion/</loc>\n		<lastmod>2020-11-11T16:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-invite-11-19-9am/</loc>\n		<lastmod>2020-11-11T15:19+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/dotloop-training/</loc>\n		<lastmod>2020-11-11T14:47+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-11-7-20/</loc>\n		<lastmod>2020-11-07T14:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/classes-on-11-5/</loc>\n		<lastmod>2020-11-04T19:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/important-announcement/</loc>\n		<lastmod>2020-11-04T19:36+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/team-meeting-today-at-11am/</loc>\n		<lastmod>2020-11-04T14:06+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/accountability-group-meeting-invite/</loc>\n		<lastmod>2020-11-02T16:16+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/todays-accountability-meeting-invote/</loc>\n		<lastmod>2020-11-02T16:07+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/lantern-team-meeting-11-4-11am/</loc>\n		<lastmod>2020-11-02T15:46+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-w-o-11-2/</loc>\n		<lastmod>2020-11-02T15:37+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-10-28-2020/</loc>\n		<lastmod>2020-10-28T12:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/foreclosure-class/</loc>\n		<lastmod>2020-10-26T12:56+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/friday-october-23rd-news-notes/</loc>\n		<lastmod>2020-10-23T20:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/further-info-regarding-our-sc-firm-license/</loc>\n		<lastmod>2020-10-22T18:26+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/this-week/</loc>\n		<lastmod>2020-10-18T17:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes-2/</loc>\n		<lastmod>2020-10-18T17:34+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/news-notes/</loc>\n		<lastmod>2020-10-16T01:22+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-mooresville/</loc>\n		<lastmod>2020-11-11T01:55+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-albemarle/</loc>\n		<lastmod>2022-02-18T03:14+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-harrisburg/</loc>\n		<lastmod>2022-02-18T03:13+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-salisbury/</loc>\n		<lastmod>2020-09-19T18:43+00:00</lastmod>\n	</url>\n	<url>\n		<loc>https://lantern-realty.com/agency/lantern-realty-and-development/</loc>\n		<lastmod>2020-10-18T19:27+00:00</lastmod>\n	</url>\n','no'),(1913018,'_transient_timeout_ihf_cache_89f743ad4343aecd36a45d71495301a8','1657493140','no'),(1913019,'_transient_ihf_cache_89f743ad4343aecd36a45d71495301a8','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";s:29:\"Sun, 10 Jul 2022 21:45:40 GMT\";s:12:\"content-type\";s:22:\"text/xml;charset=UTF-8\";s:16:\"content-language\";s:2:\"en\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:3:\"p3p\";s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901893102; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:45:40 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=; path=/; expires=Sun, 10-Jul-22 22:15:40 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"728c7cd8ebea7d74-LAX\";s:16:\"content-encoding\";s:2:\"br\";}}s:4:\"body\";s:915:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901893102</leadCaptureId> <ihfSessionId>76335dc6-dee3-4ed5-be2b-2e11ab296fde</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657444950354</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657444950354</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657444950354</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:3:{i:0;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901893102\";s:7:\"expires\";i:1689025540;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:1;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl\";s:7:\"expires\";N;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:2;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=\";s:7:\"expires\";i:1657491340;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:11:\"idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:0;}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:915:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901893102</leadCaptureId> <ihfSessionId>76335dc6-dee3-4ed5-be2b-2e11ab296fde</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657444950354</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657444950354</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657444950354</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:3:\"raw\";s:1889:\"HTTP/1.1 200 OK\r\nDate: Sun, 10 Jul 2022 21:45:40 GMT\r\nContent-Type: text/xml;charset=UTF-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nContent-Language: en\r\nVary: Accept-Encoding\r\nP3P: CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\r\nSet-Cookie: cuser123710=8901893102; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:45:40 GMT; Path=/; SameSite=None; Secure\r\nCF-Cache-Status: DYNAMIC\r\nExpect-CT: max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\r\nSet-Cookie: SESSION=NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\r\nSet-Cookie: __cf_bm=p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=; path=/; expires=Sun, 10-Jul-22 22:15:40 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\r\nServer: cloudflare\r\nCF-RAY: 728c7cd8ebea7d74-LAX\r\nContent-Encoding: br\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901893102</leadCaptureId> <ihfSessionId>76335dc6-dee3-4ed5-be2b-2e11ab296fde</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657444950354</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657444950354</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657444950354</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";a:1:{i:0;s:29:\"Sun, 10 Jul 2022 21:45:40 GMT\";}s:12:\"content-type\";a:1:{i:0;s:22:\"text/xml;charset=UTF-8\";}s:16:\"content-language\";a:1:{i:0;s:2:\"en\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:3:\"p3p\";a:1:{i:0;s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";}s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901893102; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:45:40 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=; path=/; expires=Sun, 10-Jul-22 22:15:40 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";a:1:{i:0;s:7:\"DYNAMIC\";}s:9:\"expect-ct\";a:1:{i:0;s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";}s:6:\"server\";a:1:{i:0;s:10:\"cloudflare\";}s:6:\"cf-ray\";a:1:{i:0;s:20:\"728c7cd8ebea7d74-LAX\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:172:\"https://www.idxhome.com/service/wordpress?requestType=resources&authenticationToken=57ba1f9b-a303-4b2e-90eb-792602d7dc93&version=7.1.0&leadCaptureSupport=true&phpStyle=true\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:3:{s:11:\"cuser123710\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901893102\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"max-age\";i:1689025540;s:7:\"expires\";i:1689025540;s:4:\"path\";s:1:\"/\";s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489540;s:11:\"last-access\";i:1657489540;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657489540;}s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NzYzMzVkYzYtZGVlMy00ZWQ1LWJlMmItMmUxMWFiMjk2ZmRl\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:5:{s:4:\"path\";s:1:\"/\";s:8:\"httponly\";b:1;s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489540;s:11:\"last-access\";i:1657489540;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657489540;}s:7:\"__cf_bm\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"p1GLQTcvJDI4XVzEocacw1dFHsxbUaZBvrNyVK5C3JU-1657489540-0-AY5DboPd9dYFWBR42LpG88mkg6eGrXauHcZggjC8SPm6mijINRva1gi/XpCJ4USJSZuBxHs/jc7Pd/0WDuXeujE=\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:4:\"path\";s:1:\"/\";s:7:\"expires\";i:1657491340;s:6:\"domain\";s:11:\"idxhome.com\";s:8:\"httponly\";b:1;s:6:\"secure\";b:1;s:8:\"samesite\";s:4:\"None\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489540;s:11:\"last-access\";i:1657489540;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1657489540;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(1911813,'_transient_timeout_feed_334bd520c90de38df62edc8d2011fe48','1657504980','no'),(1911814,'_transient_feed_334bd520c90de38df62edc8d2011fe48','a:3:{s:3:\"url\";s:42:\"http://www.kannapolisnc.gov/Community/News\";s:8:\"feed_url\";s:113:\"http://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/Rss.aspx?TabID=95&ModuleID=428&MaxCount=25\";s:5:\"build\";s:14:\"20220218033513\";}','no'),(1911815,'_transient_timeout_feed_mod_334bd520c90de38df62edc8d2011fe48','1657504980','no'),(1911816,'_transient_feed_mod_334bd520c90de38df62edc8d2011fe48','1657461780','no'),(1913084,'_transient_timeout_global_styles_svg_filters_houzez','1657490925','no'),(1913085,'_transient_global_styles_svg_filters_houzez','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(1736286,'e3330068e_eael_elements','a:1:{i:7;s:12:\"creative-btn\";}','no'),(1736288,'e3330068e_eael_updated_at','1656030088','no'),(1607358,'da0131a90_eael_updated_at','1656030088','no'),(1605778,'eael_admin_menu_notice','2','no'),(1605749,'a6d6d9cfb_eael_updated_at','1651341761','no'),(1606174,'elementor_experiment-e_optimized_css_loading','default','yes'),(1522630,'extendifysdk_sitesettings','{\"state\":{\"enabled\":true},\"version\":0}','yes'),(1522602,'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:1650035874;}','yes'),(1912935,'_site_transient_timeout_theme_roots','1657489301','no'),(1912936,'_site_transient_theme_roots','a:5:{s:6:\"houzez\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";s:8:\"zzhouzez\";s:7:\"/themes\";}','no'),(1253252,'40e4f8434_eael_updated_at','1656030088','no'),(705487,'rsssl_upgraded_to_four_dismissed','1','yes'),(705493,'rsssl_secure_cookies_set_dismissed','1','yes'),(1062419,'widget_wpl_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1062420,'widget_wpl_carousel_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1062421,'widget_wpl_agents_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1062422,'widget_wpl_googlemap_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1266887,'f32b69500_eael_updated_at','1656030088','no'),(1266899,'78a4b0d3e_eael_updated_at','1656030088','no'),(1266902,'wp_mail_smtp_lite_sent_email_counter','308','yes'),(1266903,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{i:16;i:9;i:17;i:10;i:18;i:20;i:19;i:8;i:20;i:15;i:21;i:10;i:22;i:7;i:23;i:8;i:24;i:2;i:25;i:129;i:26;i:1;i:27;i:10;}','yes'),(1261016,'d6d5d0d31_eael_updated_at','1656030088','no'),(1261020,'e55de3805_eael_updated_at','1656030088','no'),(1261023,'5beef87a4_eael_updated_at','1656030088','no'),(1529282,'_site_transient_ai1wm_last_check_for_updates','1653527803','no'),(1308577,'379c0f897_eael_updated_at','1651360580','no'),(1529283,'ai1wm_updater','a:0:{}','yes'),(1272756,'wp_calendar_block_has_published_posts','1','yes'),(1250967,'wp-smush-show_upgrade_modal','1','no'),(1250975,'5203dc641_eael_updated_at','1656030088','no'),(1250978,'0e09a8794_eael_updated_at','1656030088','no'),(1250998,'wp_mail_smtp_mail_key','ZwVOGoQD8UTS4LKY04kdcJ/raPr/VTfCA4BVQZp0aKs=','yes'),(1250999,'wp_mail_smtp_debug_events_db_version','1','yes'),(1259779,'ac607990c_eael_updated_at','1653527524','no'),(1250986,'66b3eb4d0_eael_updated_at','1656030088','no'),(1912937,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1657487502;s:7:\"checked\";a:5:{s:6:\"houzez\";s:5:\"2.3.7\";s:12:\"twentytwenty\";s:3:\"1.2\";s:15:\"twentytwentyone\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.0\";s:8:\"zzhouzez\";s:5:\"2.2.4\";}s:8:\"response\";a:3:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.0.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.6.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.2.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(1912938,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1657487502;s:8:\"response\";a:13:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.62\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.62.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2746234\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2746234\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:6:\"5.2.17\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"5.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}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:5:\"3.6.7\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:5:\"5.1.8\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.1.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.png?rev=2598498\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.png?rev=2598498\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.gif?rev=2731640\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.gif?rev=2731640\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:30:\"optima-express/iHomefinder.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/optima-express\";s:4:\"slug\";s:14:\"optima-express\";s:6:\"plugin\";s:30:\"optima-express/iHomefinder.php\";s:11:\"new_version\";s:5:\"7.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/optima-express/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/optima-express.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/optima-express/assets/icon-256x256.png?rev=2288316\";s:2:\"1x\";s:67:\"https://ps.w.org/optima-express/assets/icon-128x128.png?rev=2288316\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/optima-express/assets/banner-1544x500.png?rev=2288675\";s:2:\"1x\";s:69:\"https://ps.w.org/optima-express/assets/banner-772x250.png?rev=2288312\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.2.0\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;s:14:\"upgrade_notice\";s:40:\"<ul>\n<li>Version 10 bug fixes</li>\n</ul>\";}s:17:\"postie/postie.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:20:\"w.org/plugins/postie\";s:4:\"slug\";s:6:\"postie\";s:6:\"plugin\";s:17:\"postie/postie.php\";s:11:\"new_version\";s:6:\"1.9.61\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/postie/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/postie.1.9.61.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:58:\"https://ps.w.org/postie/assets/icon-256x256.png?rev=970083\";s:2:\"1x\";s:58:\"https://ps.w.org/postie/assets/icon-128x128.png?rev=970083\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/postie/assets/banner-1544x500.png?rev=651473\";s:2:\"1x\";s:60:\"https://ps.w.org/postie/assets/banner-772x250.png?rev=651473\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.3\";}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:6:\"1.78.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/google-site-kit.1.78.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=2181376\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=2181376\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=2513620\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=2513620\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:6:\"3.10.2\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-smushit.3.10.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:6:\"4.3.15\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/redux-framework.4.3.15.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-256x256.png?rev=2671465\";s:2:\"1x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-128x128.png?rev=2671465\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/redux-framework/assets/banner-1544x500.png?rev=2671465\";s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2671465\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.1\";}s:35:\"autodescription/autodescription.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/autodescription\";s:4:\"slug\";s:15:\"autodescription\";s:6:\"plugin\";s:35:\"autodescription/autodescription.php\";s:11:\"new_version\";s:5:\"4.2.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/autodescription/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/autodescription.4.2.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/autodescription/assets/icon-256x256.png?rev=2153256\";s:2:\"1x\";s:60:\"https://ps.w.org/autodescription/assets/icon.svg?rev=2153256\";s:3:\"svg\";s:60:\"https://ps.w.org/autodescription/assets/icon.svg?rev=2153256\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/autodescription/assets/banner-1544x500.png?rev=2157443\";s:2:\"1x\";s:70:\"https://ps.w.org/autodescription/assets/banner-772x250.png?rev=2157443\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/autodescription/assets/banner-1544x500-rtl.png?rev=2157443\";s:2:\"1x\";s:74:\"https://ps.w.org/autodescription/assets/banner-772x250-rtl.png?rev=2157443\";}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:5:\"7.2.0\";}s:17:\"wp-docs/index.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/wp-docs\";s:4:\"slug\";s:7:\"wp-docs\";s:6:\"plugin\";s:17:\"wp-docs/index.php\";s:11:\"new_version\";s:5:\"1.9.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/wp-docs/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/wp-docs.1.9.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/wp-docs/assets/icon-256x256.gif?rev=2286794\";s:2:\"1x\";s:60:\"https://ps.w.org/wp-docs/assets/icon-128x128.gif?rev=2272769\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-docs/assets/banner-1544x500.png?rev=2539073\";s:2:\"1x\";s:62:\"https://ps.w.org/wp-docs/assets/banner-772x250.png?rev=2539073\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.0\";s:14:\"upgrade_notice\";s:41:\"<p>Fix: Detail view sortable columns.</p>\";}s:35:\"wp-fastest-cache/wpFastestCache.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/wp-fastest-cache\";s:4:\"slug\";s:16:\"wp-fastest-cache\";s:6:\"plugin\";s:35:\"wp-fastest-cache/wpFastestCache.php\";s:11:\"new_version\";s:5:\"1.0.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wp-fastest-cache/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-fastest-cache.1.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wp-fastest-cache/assets/icon-256x256.png?rev=2064586\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-fastest-cache/assets/icon-128x128.png?rev=1068904\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/wp-fastest-cache/assets/banner-772x250.jpg?rev=1064099\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:5:\"6.9.0\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";s:21:\"WPBakery Page Builder\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:15:{s:53:\"access-category-password/access-category-password.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/access-category-password\";s:4:\"slug\";s:24:\"access-category-password\";s:6:\"plugin\";s:53:\"access-category-password/access-category-password.php\";s:11:\"new_version\";s:5:\"1.5.1\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/access-category-password/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/access-category-password.1.5.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:75:\"https://s.w.org/plugins/geopattern-icon/access-category-password_e0e4e7.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/access-category-password/assets/banner-772x250.png?rev=996162\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:25:\"add-to-any/add-to-any.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/add-to-any\";s:4:\"slug\";s:10:\"add-to-any\";s:6:\"plugin\";s:25:\"add-to-any/add-to-any.php\";s:11:\"new_version\";s:5:\"1.8.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/add-to-any/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/add-to-any.1.8.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/add-to-any/assets/icon-256x256.png?rev=972738\";s:2:\"1x\";s:54:\"https://ps.w.org/add-to-any/assets/icon.svg?rev=972738\";s:3:\"svg\";s:54:\"https://ps.w.org/add-to-any/assets/icon.svg?rev=972738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/add-to-any/assets/banner-1544x500.png?rev=2167358\";s:2:\"1x\";s:65:\"https://ps.w.org/add-to-any/assets/banner-772x250.png?rev=2167357\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}s:56:\"inline-google-spreadsheet-viewer/inline-gdocs-viewer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:46:\"w.org/plugins/inline-google-spreadsheet-viewer\";s:4:\"slug\";s:32:\"inline-google-spreadsheet-viewer\";s:6:\"plugin\";s:56:\"inline-google-spreadsheet-viewer/inline-gdocs-viewer.php\";s:11:\"new_version\";s:6:\"0.13.2\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/inline-google-spreadsheet-viewer/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/inline-google-spreadsheet-viewer.0.13.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:85:\"https://ps.w.org/inline-google-spreadsheet-viewer/assets/icon-128x128.png?rev=1107476\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":10:{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.7\";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.7.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:8:\"requires\";s:3:\"4.6\";}s:39:\"content-protector/content-protector.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/content-protector\";s:4:\"slug\";s:17:\"content-protector\";s:6:\"plugin\";s:39:\"content-protector/content-protector.php\";s:11:\"new_version\";s:7:\"3.5.5.2\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/content-protector/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/content-protector.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/content-protector/assets/icon-256x256.png?rev=2206760\";s:2:\"1x\";s:70:\"https://ps.w.org/content-protector/assets/icon-128x128.png?rev=2206760\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/content-protector/assets/banner-1544x500.png?rev=2206760\";s:2:\"1x\";s:72:\"https://ps.w.org/content-protector/assets/banner-772x250.png?rev=2206760\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/really-simple-ssl.5.3.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/really-simple-ssl/assets/banner-1544x500.png?rev=2594863\";s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.png?rev=2594863\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:65:\"responsive-mortgage-calculator/responsive-mortgage-calculator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"w.org/plugins/responsive-mortgage-calculator\";s:4:\"slug\";s:30:\"responsive-mortgage-calculator\";s:6:\"plugin\";s:65:\"responsive-mortgage-calculator/responsive-mortgage-calculator.php\";s:11:\"new_version\";s:5:\"2.4.3\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/responsive-mortgage-calculator/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/responsive-mortgage-calculator.2.4.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/responsive-mortgage-calculator/assets/icon-256x256.png?rev=1920811\";s:2:\"1x\";s:83:\"https://ps.w.org/responsive-mortgage-calculator/assets/icon-256x256.png?rev=1920811\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:85:\"https://ps.w.org/responsive-mortgage-calculator/assets/banner-772x250.png?rev=2045118\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:49:\"google-calendar-events/google-calendar-events.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/google-calendar-events\";s:4:\"slug\";s:22:\"google-calendar-events\";s:6:\"plugin\";s:49:\"google-calendar-events/google-calendar-events.php\";s:11:\"new_version\";s:6:\"3.1.36\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/google-calendar-events/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/google-calendar-events.3.1.36.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/google-calendar-events/assets/icon-256x256.png?rev=1263960\";s:2:\"1x\";s:75:\"https://ps.w.org/google-calendar-events/assets/icon-128x128.png?rev=1263960\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/google-calendar-events/assets/banner-1544x500.png?rev=1263982\";s:2:\"1x\";s:77:\"https://ps.w.org/google-calendar-events/assets/banner-772x250.png?rev=1263982\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";}s:25:\"tablepress/tablepress.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/tablepress\";s:4:\"slug\";s:10:\"tablepress\";s:6:\"plugin\";s:25:\"tablepress/tablepress.php\";s:11:\"new_version\";s:4:\"1.14\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/tablepress/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/tablepress.1.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/tablepress/assets/icon-256x256.png?rev=1064192\";s:2:\"1x\";s:63:\"https://ps.w.org/tablepress/assets/icon-128x128.png?rev=1064192\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/tablepress/assets/banner-1544x500.png?rev=1275767\";s:2:\"1x\";s:65:\"https://ps.w.org/tablepress/assets/banner-772x250.png?rev=1275767\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/tablepress/assets/banner-1544x500-rtl.png?rev=1275767\";s:2:\"1x\";s:69:\"https://ps.w.org/tablepress/assets/banner-772x250-rtl.png?rev=1275767\";}s:8:\"requires\";s:3:\"5.6\";}s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/ultimate-posts-widget\";s:4:\"slug\";s:21:\"ultimate-posts-widget\";s:6:\"plugin\";s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/ultimate-posts-widget/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/ultimate-posts-widget.2.2.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:72:\"https://s.w.org/plugins/geopattern-icon/ultimate-posts-widget_5b9f2b.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/ultimate-posts-widget/assets/banner-772x250.png?rev=960451\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";}s:37:\"user-role-editor/user-role-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/user-role-editor\";s:4:\"slug\";s:16:\"user-role-editor\";s:6:\"plugin\";s:37:\"user-role-editor/user-role-editor.php\";s:11:\"new_version\";s:4:\"4.62\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/user-role-editor/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/user-role-editor.4.62.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390\";s:2:\"1x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-128x128.jpg?rev=1020390\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/user-role-editor/assets/banner-772x250.png?rev=1263116\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":10:{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:6:\"1.6.13\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.13.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:8:\"requires\";s:3:\"5.0\";}s:40:\"real-estate-listing-realtyna-wpl/WPL.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:46:\"w.org/plugins/real-estate-listing-realtyna-wpl\";s:4:\"slug\";s:32:\"real-estate-listing-realtyna-wpl\";s:6:\"plugin\";s:40:\"real-estate-listing-realtyna-wpl/WPL.php\";s:11:\"new_version\";s:6:\"4.12.1\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/real-estate-listing-realtyna-wpl/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/real-estate-listing-realtyna-wpl.4.12.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/real-estate-listing-realtyna-wpl/assets/icon-256x256.png?rev=2106080\";s:2:\"1x\";s:85:\"https://ps.w.org/real-estate-listing-realtyna-wpl/assets/icon-128x128.png?rev=2106080\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/real-estate-listing-realtyna-wpl/assets/banner-1544x500.png?rev=2176905\";s:2:\"1x\";s:87:\"https://ps.w.org/real-estate-listing-realtyna-wpl/assets/banner-772x250.png?rev=2176905\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.0.0\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"3.4.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.3.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=2468655\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=2468655\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:27:\"wps-cleaner/wps-cleaner.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wps-cleaner\";s:4:\"slug\";s:11:\"wps-cleaner\";s:6:\"plugin\";s:27:\"wps-cleaner/wps-cleaner.php\";s:11:\"new_version\";s:5:\"1.6.8\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wps-cleaner/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wps-cleaner.1.6.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wps-cleaner/assets/icon-256x256.jpg?rev=1880502\";s:2:\"1x\";s:64:\"https://ps.w.org/wps-cleaner/assets/icon-128x128.jpg?rev=1880502\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wps-cleaner/assets/banner-1544x500.jpg?rev=1880502\";s:2:\"1x\";s:66:\"https://ps.w.org/wps-cleaner/assets/banner-772x250.jpg?rev=1880502\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";}}}','no'),(1251012,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1251018,'can_compress_scripts','0','no'),(1256485,'45184feba_eael_updated_at','1653527524','no'),(1252027,'1cef1a677_eael_updated_at','1656030088','no'),(1551649,'googlesitekitpersistent_remote_features','a:10:{s:14:\"adsenseSetupV2\";a:1:{s:7:\"enabled\";b:0;}s:8:\"ga4setup\";a:1:{s:7:\"enabled\";b:1;}s:14:\"helpVisibility\";a:1:{s:7:\"enabled\";b:1;}s:13:\"ideaHubModule\";a:1:{s:7:\"enabled\";b:0;}s:14:\"serviceSetupV2\";a:1:{s:7:\"enabled\";b:1;}s:16:\"unifiedDashboard\";a:1:{s:7:\"enabled\";b:1;}s:12:\"userFeedback\";a:1:{s:7:\"enabled\";b:1;}s:17:\"widgets.dashboard\";a:1:{s:7:\"enabled\";b:1;}s:21:\"widgets.pageDashboard\";a:1:{s:7:\"enabled\";b:1;}s:14:\"zeroDataStates\";a:1:{s:7:\"enabled\";b:1;}}','yes'),(1893784,'_site_transient_timeout_php_check_3a6f2a803f99347534e67553ed67d1ad','1657654838','no'),(1893785,'_site_transient_php_check_3a6f2a803f99347534e67553ed67d1ad','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(1551633,'RealtynaMlsSyncDashboard_realtyna_scheduler_RealtynaMlsSyncDashboard::setStatusSignalScheduler','1650503630','yes'),(1787435,'_transient_timeout_feed_31cf07fc8144de8a7ff49e57a683f0de','1657504980','no'),(1787436,'_transient_feed_31cf07fc8144de8a7ff49e57a683f0de','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:6:\"\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:70:\"\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:39:\"City of Kannapolis | City of Kannapolis\";s:7:\"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:\"https://www.kannapolisnc.gov\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"RSS feeds for City of Kannapolis | City of Kannapolis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:3:\"ttl\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"60\";s:7:\"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:25:{i:0;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://www.kannapolisnc.gov/Community/News/ID/2053/Kannapolis-Announces-Winners-of-Chalk-Art-Contest#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Kannapolis Announces Winners of Chalk Art Contest\";s:7:\"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:101:\"https://www.kannapolisnc.gov/Community/News/ID/2053/Kannapolis-Announces-Winners-of-Chalk-Art-Contest\";s: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:802:\"Congratulations to the winners of our Chalk Art Contest honoring Parks and Recreation Month! Artists displayed their talent last weekend on sidewalks of the North Carolina Research Campus by creating beautiful chalk drawings.\n\nThank you to everyone who participated!\n\nPrizes were awarded in the following categories:\n\nBest Theme Related (Parks &amp; Recreation) Work\n\n\n Adult (18 &amp; Up): Melissa Allmon\n Teen (13-17): Alexandria Otis\n Youth (5-12): Mila Allmon\n\n\n&nbsp;\n\nMost Colorful Piece\n\n\n Adult (18 &amp; Up): Meredith Teeter\n Teen (13-17): Samantha Griffin\n Youth (5-12): Savannah Griffin\n\n\n&nbsp;\n\nPeople&rsquo;s Choice Best in Show\n\n\n Teen (13-17): Samantha Griffin\n Youth (5-12): Savannah Griffin\n\n\n&nbsp;\n\nTo learn more about Parks and Recreation in Kannapolis, visit www.kannapolisnc.gov\n\";s: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:29:\"Thu, 07 Jul 2022 12:33:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2053\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2053\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2053&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://www.kannapolisnc.gov/Community/News/ID/2052/Kannapolis-Police-Officer-Receives-State-and-National-Recognition#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Kannapolis Police Officer Receives State and National Recognition\";s:7:\"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:117:\"https://www.kannapolisnc.gov/Community/News/ID/2052/Kannapolis-Police-Officer-Receives-State-and-National-Recognition\";s: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:1083:\"Sergeant Travis Smith has been recognized as the 2021-2022 North Carolina Police Officer of the Year by the Veterans of Foreign Wars. He received the honor at the North Carolina State VFW Conference and was recognized for his professionalism, leadership and commitment to the City of Kannapolis.\n\n&nbsp;\n\nHe was nominated for the award by Kannapolis VFW Post 8989 and was selected from a field of police officer candidates from around the state. As a result of winning this prestigious honor Travis has also been recognized as a National VFW Police Officer of the Year.\n\n&nbsp;\n\nTravis is a graduate of Northwest Cabarrus High School. He served in the United States Marine Corps and the Army Reserves with a deployment to Iraq.\n\n&nbsp;\n\nHe began his career with the Kannapolis Police Department as a patrol officer. He was designated as a Field Training Officer and was promoted to Sergeant in 2016. He is currently assigned to Patrol Squad D.\n\n&nbsp;\n\nHe was presented with a Life Saving Award in March 2013 for his actions in saving a person who was in a burning home in the City.\n\";s: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:29:\"Wed, 06 Jul 2022 13:05:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2052\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2052\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2052&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2051/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"This Week’s Discover Fun in Kannapolis 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:96:\"https://www.kannapolisnc.gov/Community/News/ID/2051/This-Weeks-Discover-Fun-in-Kannapolis-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1678:\"It is another great week to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\nJuly 6-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cannon Ballers Homestand\n\nTickets at www.kcballers.com\n\n&nbsp;\n\nJuly 7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market\n\n4 -7 p.m. at corner of Dale Earnhardt Blvd. and Vance Ave.\n\nFeaturing live music from Chase Killough (acoustic guitar)\n\n&nbsp;\n\nJuly 8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Movie in the Park: Jungle Cruise\n\n8:45 p.m. at Village Park\n\n&nbsp;\n\nJuly 10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Movie in the Park (En Espanol): Jungle Cruise\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6 p.m. at Atrium Health Ballpark\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\n&nbsp;\n\nCoolers are allowed but alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.\n\";s: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:29:\"Tue, 05 Jul 2022 20:21:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2051\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2051\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2051&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.kannapolisnc.gov/Community/News/ID/2050/Cabarrus-County-Roundabout-Contract-Awarded#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Cabarrus County Roundabout Contract Awarded\";s:7:\"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:95:\"https://www.kannapolisnc.gov/Community/News/ID/2050/Cabarrus-County-Roundabout-Contract-Awarded\";s: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:1113:\"N.C. Department of Transportation contract crews will soon start building a roundabout at the intersection of N.C. 3 and Odell School Road, west of Kannapolis. The $990,317 project was awarded last month to NJR Group, Inc. out of Albemarle.\n\n&nbsp;\n\nThe project has a floating start date, meaning work can commence between July 11 &ndash; Sept. 6. Once the contractor does begin work, the contract allows up to six weeks to build the roundabout, which must open no later than Nov. 4.\n\n&nbsp;\n\nThe intersection will be closed to traffic so contract crews can safely build the roundabout. Drivers will be detoured during construction along Odell School Road, N.C. 3, and Windy Road, returning to Odell School Road.\n\n&nbsp;\n\nRoundabouts improve safety for drivers, pedestrians, and bicyclists. They also help reduce the congestion and backups more typical at traditional intersections with stop signs and traffic signals.\n\n&nbsp;\n\nNCDOT has produced a video showing how roundabouts work and improve overall safety.\n\nFor real-time travel information, visit&nbsp;DriveNC.gov&nbsp;or&nbsp;follow NCDOT on social media.\n\";s: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:29:\"Tue, 05 Jul 2022 14:33:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2050\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2050\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2050&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://www.kannapolisnc.gov/Community/News/ID/2045/July-4th-Holiday-Information#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"July 4th Holiday Information\";s:7:\"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://www.kannapolisnc.gov/Community/News/ID/2045/July-4th-Holiday-Information\";s: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:503:\"All City of Kannapolis offices will be closed on Monday, July 4, in observance of the Independence Day holiday. There will be no disruption in garbage and recycling collection service; however, there will be no collection of yard debris.\n\nPlease remember in North Carolina, only sparklers and poppers are legal. It&#39;s illegal to have ground spinners, bottle rockets, and aerial fireworks (any firework that explodes or leaves the ground on its own). Please adhere to the law and have a safe holiday.\n\";s: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:29:\"Thu, 30 Jun 2022 18:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2045\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2045\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2045&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://www.kannapolisnc.gov/Community/News/ID/2049/Kannapolis-Approves-FY-23-Budget#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Kannapolis Approves FY 23 Budget\";s:7:\"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://www.kannapolisnc.gov/Community/News/ID/2049/Kannapolis-Approves-FY-23-Budget\";s: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:5241:\"The Kannapolis City Council has approved the Fiscal Year 2023 budget. The total budget is $94,916,039 and includes all six operating funds of the City. The budget includes no property tax increase.\n\n&nbsp;\n\nThe budget concentrates on several guiding principles:\n\n1. Maintaining and improving city services to meet the needs of our thriving City.\n\n2. Retaining existing employees and recruiting new people to work for the City.\n\n3. Saving cash reserves to be used for future one-time capital projects once the Imagine Kannapolis Strategic Planning Process is completed later this year. The goal of Imagine Kannapolis is to establish a future vision for Kannapolis, determine the focus areas (such as public safety, transportation, and economic development) needed to bring the vision to fruition, set strategic objectives for each focus area, develop a financial and operational plan to achieve the objectives and begin implementation of the strategic plan.\n\n&nbsp;\n\nThe City&rsquo;s population is approximately 55,000 and the City has grown by 45% in the last 20 years. Kannapolis is the 20th largest city in North Carolina. Projections indicate that the City will continue to grow by 2.2% annually and will likely reach a population of at least 77,000 by 2040.\n\n&nbsp;\n\nLike all cities and businesses across the U.S. Kannapolis faces the challenges of the new post Covid normal. Employee shortages, inflation, supply chain issues and construction costs impact how the City spends its funds to provide services. Fortunately, the City&rsquo;s good financial health and the continued outlook for positive economic growth mean the City can meet these challenges without increases in the property tax rate or fees this year.\n\n&nbsp;\n\n&ldquo;Our most valuable asset is our employees. Without our employees we could not keep the City safe, livable, comfortable or vibrant. Every day we are able to go about our lives because City employees have made sure we have clean water, our garbage is collected, and police and fire are taking care of our emergency needs. We can go to a park, walk a greenway and enjoy a concert. We have places to go to work and much more because our dedicated city staff are doing their jobs to make Kannapolis a premier place to be,&rdquo; said Kannapolis City Manager Mike Legg. &ldquo;This budget concentrates on providing the tools we need to ensure we have a high-quality staff.&rdquo;\n\n&nbsp;\n\nThe current tax rate will remain at .63 cents per $100 valuation &ndash; a home valued at $200,000 will pay $1,260 annually in property taxes for all City services.\n\n&nbsp;\n\nThe majority of the City&rsquo;s revenues come from two sources &ndash; property taxes (57% of the budget) and sales taxes (22% of the budget).\n\n&nbsp;\n\nNotable items in the budget include:\n\n\n $1.41 million &ndash; 5% Cost of Living Adjustments for all employees\n $875,000 &ndash; 11 new positions and 15 reclassifications (including: additional city attorney, assistant HR director, community outreach coordinator, payroll administrator, assistant parks director, police recruiting officer, GIS specialist, construction maintenance worker, two construction maintenance technicians and a customer service representative\n $921,000 for replacement of 15 police vehicles\n $150,000 for improvements to the recently acquired Dixie Youth Diamond Sports Facility\n $1 million for renovations and improvements to Fire Stations #1 and #4\n $149,347 &ndash; replacement of citywide technology equipment and devices\n $323,406 for the 2nd payment for full replacement of all police in-car cameras, body worn cameras and tasers\n $95,000 &ndash; replacement of fire hoses, communication devices and other fire equipment needs\n $13,000 to replace HVAC at Fire Station #5\n $160,000 for new pickleball courts and either Safrit Park or Baker&rsquo;s Creek Park\n $210,620 increase for street repairs and maintenance\n $50,000 for sidewalk repairs near A.L. Brown High School and surrounding neighborhoods\n $179,239 for increasing part time hourly salaries in the parks and recreation department\n $136,000 for upgrades to the 911 telecommunications operations\n $8,500 for new equipment for Customer Service\n $730,000 for vehicles and large equipment replacements in the Water Resources Department\n $856,000 Kannapolis&rsquo; share to Water and Sewer Authority of Cabarrus County (WSACC) to fund wastewater treatment plant expansion.\n $703,235 increase in costs to fund CK Rider (fuel, new federal requirements and contract increases)\n $482,841 - the local match for new CK Rider buses. Joint match with the City of Concord.\n $14.9 million for debt payments for completed projects such as: City Hall, Fire Stations 2 &amp; 3, Irish Buffalo Creek Greenway, Atrium Health Ballpark, West Avenue Streetscape, VIDA Parking Deck, fire trucks, police radios, and Village Park\n $325,000 to acquire Gem Theatre business and $735,545 for management of the Gem Theatre as it becomes an operation of the City. The management expenses will be matched by corresponding revenues from ticket and concession sales and facility rentals.\n &nbsp;Increase water and sewer tap fees to $7,500 per tap in order to achieve full cost recovery of the expenses incurred by the City.\n\n\n&nbsp;\n\n&nbsp;\n\";s: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:29:\"Tue, 28 Jun 2022 21:15:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2049\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2049\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2049&PortalID=0&TabID=95\";s: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:\"Annetter Keller\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.kannapolisnc.gov/Community/News/ID/2048/Join-A-Focus-Group-As-We-Imagine-Kannapolis#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Join A Focus Group As We &quot;Imagine Kannapolis&quot;\";s:7:\"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:95:\"https://www.kannapolisnc.gov/Community/News/ID/2048/Join-A-Focus-Group-As-We-Imagine-Kannapolis\";s: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:6104:\"Over the last seven years the leaders of the City of Kannapolis have dedicated themselves to revitalizing the City&rsquo;s downtown and strengthening the economic base. Bold steps to purchase real estate, invest in infrastructure, construct public assets, launch the Discover a Healthy Life brand, and to attract private investment have paid huge dividends for the City.\n\nAccomplishments include:\n\n\n Welcoming companies such as Amazon, Prime Beverage, Gordon Food Company, the N.C. Food Innovation Lab, Linder Industrial; all who have created thousands of jobs and millions in regional investments.\n &nbsp;\n Purchasing and selling downtown properties that have resulted in private investments totaling over $100 million with another minimum of $100 million projected to begin within the next year. These investments include over 30 new small businesses, VIDA Apartments, Pennant Square Townhomes and the planned 200 Main Apartments and Stadium Lofts Mixed Use Development.\n\n\n&nbsp;\n\n\n Constructing the West Avenue Streetscape, Atrium Health Ballpark, VIDA Parking Deck, Fire Stations 2 and 3, and the Irish Buffalo Creek Greenway and the first phase of renovating the Gem Theatre.\n\n\n&nbsp;\n\nWhile these are tremendous successes City leaders are not resting on their laurels but are asking: &ldquo;Imagine Kannapolis&rdquo;: What do we want the City of Kannapolis to look like in 10 or 20 years? How do we build on our qualities as a city? What do we need to do to prepare for the next generation? Where are we going? And how do we get there?\n\n&nbsp;\n\nThe Kannapolis City Council is launching the Imagine Kannapolis Strategic Planning Process. The goal will be to establish a future vision for Kannapolis, determine focus areas (such as public safety, transportation, and economic development) needed to bring the vision to fruition, set strategic objectives for each focus area, develop a financial and operational plan to achieve the objectives and begin implementation of the strategic plan.\n\n&nbsp;\n\n&ldquo;Over the last decade we have made much progress in rebounding from the devastating loss of our largest employer. We have demonstrated that we can revitalize our downtown and attract new companies to our city. Now, it is time to go a step further. What does our city look like in the next decade? What is our vision for our city?&rdquo; commented Kannapolis Mayor Darrell Hinnant.\n\n&nbsp;\n\nThe Kannapolis City Council invites the public to become involved with Imagine Kannapolis by volunteering to participate in an Imagine Kannapolis focus group. The purpose of each focus group is to develop the specific strategies needed to achieve the City&rsquo;s vision within a specific focus area. It is anticipated that the focus groups will only meet a few times over the next four months and the entire strategic process will be completed this year. Additional public input opportunities will include public surveys and public comment via City social media channels.\n\n&nbsp;\n\n&ldquo;We are cognizant of people having a lot on their plates. While this is a very important process for our City, we want the focus groups to be collaborative, represent the demographics of our City, to be thorough, but to also be fun and rewarding as we work to discover what our future will be,&rdquo; said Kannapolis City Manager Mike Legg.\n\n&nbsp;\n\nThe focus groups will be coordinated by City staff and will consult with subject matter experts as needed. The first group focused on Homelessness and Transitional Housing and is already meeting. An additional three groups will focus on Historic Preservation, Environmental Stewardship and Neighborhood Improvement.\n\n&nbsp;\n\nThe Historic Preservation Focus Group will include exploring the ideas of a history museum by the Kannapolis History Associates, a request by the Kannapolis African American Museum and Cultural Center for a facility and a Cannon Family Tribute. Consideration of what a museum might look like in today&rsquo;s era such as online and virtual options versus brick and mortar options for historic preservation and promotion as well as hands on programming versus static displays.\n\n&nbsp;\n\nThe Environmental Stewardship Focus Group will discuss a set of initiatives and investments to make Kannapolis more environmentally sustainable and more physically attractive. Items could include litter cleanup programming, new gateway improvements along I-85 exit corridors, more proactive code enforcement, tree planting, more preservation of natural areas, reestablishing the Beautification Commission, an Adopt-A-Stream Program, stream restoration, and improved recycling participation.\n\n&nbsp;\n\nThe Neighborhood Improvement Focus Group will focus on plans that would help stabilize existing neighborhoods and make them more resilient. This group will discuss what physical investments could help with this process such as sidewalks, street trees, monument signage, enhanced solid waste service, assistance with developing neighborhood groups, proactive code enforcement, rental registration program, policies to limit investor-owned properties and strategies to improve existing manufactured home parks.\n\n&nbsp;\n\nA fifth focus group, the Recreation Facilities Focus Group will be led by the City&rsquo;s existing Parks and Recreation Commission. Over the next four months City staff will also be working with additional focus groups such as Transportation, Infrastructure and Public Safety facilities. These groups will be internal based with staff and stakeholders such as NCDOT participating in the process.\n\n&nbsp;\n\nIf you would like to be a part of the Imagine Kannapolis Strategic Planning Process, by serving on the Historic Preservation, Environmental Stewardship or Neighborhood Improvement Focus Groups please complete the application and check the box designating that group.\n\n&nbsp;\n\nFind the application at www.kannapolisnc.gov/ImagineKannapolis. Applications are due July 18, 2022.\n\n&nbsp;\n\nFor more information contact Annette Privette Keller, Director of Communications, at 704.920.4311 or aprivettekeller@kannapolisnc.gov\n\n&nbsp;\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 28 Jun 2022 11:42:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2048\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2048\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2048&PortalID=0&TabID=95\";s: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:\"Annetter Keller\";s: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\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://www.kannapolisnc.gov/Community/News/ID/2046/Rewrite-of-Kannapolis-Development-Ordinance-Approved#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Rewrite of Kannapolis Development Ordinance Approved\";s:7:\"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:104:\"https://www.kannapolisnc.gov/Community/News/ID/2046/Rewrite-of-Kannapolis-Development-Ordinance-Approved\";s: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:2429:\"The Kannapolis City Council has approved the rewrite of the Kannapolis Development Ordinance (KDO). The ordinance was first approved by the City in 2000. The City, as well as development, has changed during the last 22 years. The new Kannapolis Development Ordinance is user-friendly, uses graphics and streamlined text and reflects the vision and policies of the City Council as laid out in the Move Kannapolis Forward 2030 Comprehensive Plan.\n\n&nbsp;\n\nThe ordinance is the adopted law of the City that regulates land use and form, growth, and development. It includes zoning regulations which governs the location, size and type of development within zoning districts and regulations for items such as subdivisions. The document also establishes the process for reviewing development proposals and includes standards for different aspects of development, like parking, landscaping, the layout of streets and blocks, lighting, signage, building design, trees, and environmental protections.\n\n&nbsp;\n\n&ldquo;This ordinance better reflects where we are as a City currently. Our goal is to facilitate and assist people who want to build in our City, but we want to manage that growth so that we have quality home, office and industrial buildings and developments. We expect this document to assist us to more easily help people with the approval process in the Planning Department &ndash; whether you are a homeowner who wants to install a fence or a developer who wants to build an office complex,&rdquo; said Richard Smith, Director of Planning.\n\n&nbsp;\n\nOver the last few years, the Planning Department has led the rewrite process. Numerous presentations and public meetings have been held with the public and development community members to gain input and information on what was needed to make the ordinance work.\n\n&nbsp;\n\nHighlights of the new ordinance include:\n\n\n Conditional zoning procedures are reorganized and updated\n Planned development procedures are modernized\n New fence and wall standards\n New exterior lighting standards\n Updated parking lot landscaping and perimeter buffer standards\n Permits for tree removal will be required\n New comprehensive open space standards for developments\n Standards for quality of development and items that address height of buildings, types of lighting, signage, loading and storage areas and facades in mixed use districts\n\n\n&nbsp;\n\nThe new ordinance is effective July 1, 2022.\n\";s: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:29:\"Mon, 27 Jun 2022 18:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2046\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2046&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2043/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"This Week&#039;s Discover Fun in Kannapolis 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:96:\"https://www.kannapolisnc.gov/Community/News/ID/2043/This-Weeks-Discover-Fun-in-Kannapolis-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1892:\"It is another great year to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\nJune 30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market\n\n4 -7 p.m. at corner of Dale Earnhardt Blvd. and Vance Ave.\n\n&nbsp;\n\nJuly 1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Concert in the Park and Fireworks: Charlotte Symphony\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7 p.m. at Village Park\n\n&nbsp;\n\nJuly&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sunday Music Series: UltimaNota\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1-3 p.m. at Veterans Park&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\nOutside alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.&nbsp;\n\";s: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:29:\"Mon, 27 Jun 2022 12:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2043\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2043\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2043&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://www.kannapolisnc.gov/Community/News/ID/2044/Join-us-for-Air-Supply-Concert-at-Village-Park-this-Weekend#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Join us for Air Supply Concert at Village Park this Weekend\";s:7:\"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:111:\"https://www.kannapolisnc.gov/Community/News/ID/2044/Join-us-for-Air-Supply-Concert-at-Village-Park-this-Weekend\";s: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:580:\"Join us at 7 p.m. this Saturday, June 25 for Air Supply at Village Park!\n\nSpringer and Cagle will open the event.\n\nPlease take time to review the parking map and shuttle stops. Shuttle service will be for concertgoers only between the hours of 5-11 p.m.\n\nThis event is free to the public. Food vendors will be on site during the event, including Lil Donut Express and Triple C.\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. Bring your lawn chairs. You are also welcome to bring your own cooler - with no alcoholic beverages please. No pets or smoking please.\n\";s: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:29:\"Thu, 23 Jun 2022 12:37:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2044\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2044&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://www.kannapolisnc.gov/Community/News/ID/2042/City-of-Kannapolis-Collecting-School-Supplies#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"City of Kannapolis Collecting School Supplies\";s:7:\"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:97:\"https://www.kannapolisnc.gov/Community/News/ID/2042/City-of-Kannapolis-Collecting-School-Supplies\";s: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:428:\"The Kannapolis Police Department and the Kannapolis Youth Council are spearheading a school supply collection campaign for local students.\n\n&nbsp;\n\nWe invite you to donate school supplies for children in kindergarten thru 12th grade. Please bring your donations and drop by them off in the lobby of the Kannapolis City Hall &amp; Police Department located at 401 Laureate Way.\n\n&nbsp;\n\nDonations will be accepted until July 31.\n\";s: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:29:\"Tue, 21 Jun 2022 19:21:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2042\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2042\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2042&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2041/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"This Week&#039;s Discover Fun in Kannapolis 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:96:\"https://www.kannapolisnc.gov/Community/News/ID/2041/This-Weeks-Discover-Fun-in-Kannapolis-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2011:\"It is another great year to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\n&nbsp;\n\nJune 21-26&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cannon Ballers Homestand\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; www.kcballers.com for tickets\n\n&nbsp;\n\nJune 23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market \n\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 4 -7 p.m. at corner of Dale Earnhardt Blvd. &amp; Vance Ave.\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Featuring live music from Jamie Brock (Nagara drums)\n&nbsp;\n\nJune 25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Free Concert in the Park: Air Supply\n\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 7 p.m. at Village Park\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\nOutside alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.&nbsp;\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Mon, 20 Jun 2022 13:59:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2041\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2041&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2040/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"This Week’s Discover Fun in Kannapolis 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:96:\"https://www.kannapolisnc.gov/Community/News/ID/2040/This-Weeks-Discover-Fun-in-Kannapolis-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3249:\"It is another great year to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\n&nbsp;\n\nJune 16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market\n\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4 -7 p.m. at corner of Dale Earnhardt Blvd. and Vance Ave.\n\n&nbsp;\n\nJune 17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Movies in the Park: Sing 2\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8:45 p.m. at Village Park\n\n&nbsp;\n\nJune 18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Kannapolis Police Bike Rodeo\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10 a.m. to 12 p.m. | Advance registration required\n\n&nbsp;\n\nJune 18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Stories Under the Stars: Sharon Clarke\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7 p.m. at Kannapolis Library\n\n&nbsp;\n\nJune 19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sunday Music Series: Casear and Creole Soul\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1-3 p.m. at Veterans Park\n\n&nbsp;\n\nJune 19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Movies in the Park (En Español): Sing 2\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6 p.m. at Atrium Health Ballpark\n\n&nbsp;\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\nOutside alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.\n\";s: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:29:\"Mon, 13 Jun 2022 16:02:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2040\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2040&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://www.kannapolisnc.gov/Community/News/ID/2039/Kannapolis-Offers-Flag-Football#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Kannapolis Offers Flag Football\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://www.kannapolisnc.gov/Community/News/ID/2039/Kannapolis-Offers-Flag-Football\";s: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:641:\"The City of Kannapolis Parks and Recreation Department has opened registration for Flag Football for children ages 5 to 14. Registration will close on July 31.\n\nThe registration fee is $40 for Kannapolis residents and $60 for non-residents, which includes the cost of uniforms, practices and games. Scholarships and sponsorships are available.\n\nPractices begin August 22 and games will start September 10. The season will end October 29. Games and practices will be held primarily at Safrit Park.\n\nVisit kannapolisnc.gov or call Parks and Recreation at 704-920-4343 to register, apply for a scholarship and sign up to be a coach or sponsor.\n\";s: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:29:\"Mon, 13 Jun 2022 14:14:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2039\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2039\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2039&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.kannapolisnc.gov/Community/News/ID/2038/Kannapolis-Police-Will-Host-Free-Bike-Rodeo#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Kannapolis Police Will Host Free Bike Rodeo\";s:7:\"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:95:\"https://www.kannapolisnc.gov/Community/News/ID/2038/Kannapolis-Police-Will-Host-Free-Bike-Rodeo\";s: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:994:\"Children ages 5-12 are invited to join the City of Kannapolis for a bike rodeo from 10 a.m. to 12 p.m. on June 18 at the N.C. Research Campus. What is a bicycle rodeo? It&rsquo;s a free event where Kannapolis police officers show children how to ride their bicycles safely while having fun.\n\n&nbsp;\n\nThe event will take place at the Horseshoe on North Research Campus Drive. Children, and their parents, are invited to visit activity stations to learn more about helmet fittings, bike inspections, hand signals and bike safety. Children will also be able to ride along with Kannapolis police officers and participate in an obstacle course.\n\n&nbsp;\n\nPlease bring your bike and helmet to the event. There will be a limited number of helmets, donated by Safe Kids, given away during the event.\n\n&nbsp;\n\nRegistration is free and required in advance at https://anc.apm.activecommunities.com/kannapolisnc/activity/search?onlineSiteId=0&amp;locale=en-US&amp;activity_select_param=2&amp;viewMode=list.\n\";s: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:29:\"Thu, 09 Jun 2022 19:32:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2038\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2038\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2038&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://www.kannapolisnc.gov/Community/News/ID/2037/This-Weeks-Discover-Fun-in-Kannapolis-Events#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"This Week’s Discover Fun in Kannapolis 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:96:\"https://www.kannapolisnc.gov/Community/News/ID/2037/This-Weeks-Discover-Fun-in-Kannapolis-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2374:\"It is another great year to Discover Fun in Kannapolis. The City has announced its lineup of concerts, movies, special events, Cannon Ballers baseball and of course - fireworks for 2022. All movies and concerts are free to the public and will be held in downtown Kannapolis. Movies and concerts are held at Village Park and Veterans Park.\n\n&nbsp;\n\nThis week&rsquo;s events are:\n\n&nbsp;\n\nJune 7-12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cannon Ballers Homestand\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; www.kcballers.com for tickets\n\n&nbsp;\n\nJune 9 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Farmer&rsquo;s Market\n\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 4 -7 p.m. at corner of Dale Earnhardt Blvd. and Vance Ave.\n\n&nbsp;\n\nJune 9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Thursdays on Main: Gary Lowder &amp; Smokin&rsquo; Hot\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6 p.m. at Veterans Park\n\n&nbsp;\n\nJune 11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Stories Under the Stars: Rockstar Magic\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7 p.m. at Royal Oaks Elementary\n\n&nbsp;\n\nChildren 18 &amp; under must be accompanied by a parent/guardian. No pets or smoking please.\n\nOutside alcohol is not permitted. Food/Drinks will be available for purchase, or attendees can bring their own. Lawn chairs are permitted. You can download the summer&rsquo;s entire schedule at www.kannapolisnc.gov or find it on Facebook and Twitter.&nbsp;\n\";s: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:29:\"Mon, 06 Jun 2022 17:04:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2037\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2037\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2037&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:153:\"https://www.kannapolisnc.gov/Community/News/ID/2036/City-of-Kannapolis-Communications-Staff-Takes-Home-State-Honors-for-the-7th-Consecutive-Year#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"City of Kannapolis Communications Staff Takes Home State Honors for the 7th Consecutive Year\";s:7:\"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:144:\"https://www.kannapolisnc.gov/Community/News/ID/2036/City-of-Kannapolis-Communications-Staff-Takes-Home-State-Honors-for-the-7th-Consecutive-Year\";s: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:3275:\"The City of Kannapolis was among 29 North Carolina governments to earn recognition in the North Carolina City &amp; County Communicators (NC3C) 2022 Excellence in Communications Awards. Kannapolis won a total of five awards in the categories of social media, print and digital technology. This is the 7th consecutive year that the Communications staff for the City has won state honors.\n\n&nbsp;\n\nThe awards were announced during NC3C&rsquo;s 2022 annual conference in Greenville, North Carolina. All 111 award program entries were judged by professional communications peers from the Minnesota Association of Government Communicators. Work is judged, independent of the municipality&rsquo;s size, and ranked on a strict scale for its quality and documentation of achievement.\n\n&nbsp;\n\n&ldquo;The Excellence in Communications Awards are my favorite part of our annual conference, right behind seeing all my friends and colleagues from across the state,&rdquo; said outgoing NC3C President Joshua Harris, City of Lenoir, NC. &ldquo;It&rsquo;s the time when our members really get to shine for creating content that rose to the top, which is not so easy a feat in our state full of amazing local government communicators.&rdquo;\n\n&nbsp;\n\nKannapolis placed first in the category of social media campaign with their Economic Development Campaign which focused on promoting the City as a place to do business. The three-month campaign featured six local businesses/industries that are success stories &ndash; Gordon Food Company, Stewart-Haas Racing, Nostalgia Hollow, ITC, Linder, and Kontek. Each of the six Kannapolis companies covered a different sector of the business world. The social media campaign told the story of the highlighted business and why Kannapolis is their place of business. The social media campaign was a success and brought attention to the City from a national standpoint.\n\n&nbsp;\n\nA promotional video featuring the Gordon Food Company earned second place honors. The video was also used as part of the Economic Development Campaign social media campaign. The video featured top executives from the company touted the reasons why they find Kannapolis a great place to do business.\n\n&nbsp;\n\nKannapolis also placed first in the category of best single social media post with a post featuring police officers and the launch of their new electric bicycle program. The City placed second in the print category for a new brochure on the City&rsquo;s greenway system and Loop the Loop Program.\n\n&nbsp;\n\nKannapolis, along with Cabarrus County and the City of Concord won second place in the category of digital technology for the CARTology app. The CARTology app was launched to help residents with any questions or information they need regarding their garbage, recycling, bulky waste or yard waste collection. Thousands of people are using the free app and it has reduced the number of calls into the various municipality call centers.\n\n&nbsp;\n\nThe purpose of North Carolina City &amp; County Communicators is to encourage professional development and networking among local governmental communications professionals. The organization consists of professional government communicators from around the state. For more information about NC3C, visit www.nc3c.com.\n\";s: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:29:\"Fri, 03 Jun 2022 13:12:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2036\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2036\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2036&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://www.kannapolisnc.gov/Community/News/ID/2035/Enjoy-Summer-Adventures-with-5-Kids-Fare-on-NC-By-Train#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Enjoy Summer Adventures with $5 Kids Fare on NC By Train\";s:7:\"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:107:\"https://www.kannapolisnc.gov/Community/News/ID/2035/Enjoy-Summer-Adventures-with-5-Kids-Fare-on-NC-By-Train\";s: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:1125:\"Families looking for fun summer adventures can enjoy one $5 kids fare special to travel the rails on NC By Train.\n\nFrom today through Aug. 31, customers can book travel at NCByTrain.org and take advantage of the one-way $5 fare for one child age 2-12 with the purchase of a regularly priced adult ticket. Terms and conditions apply.\n\nPassengers can stop in any of the North Carolina cities below when traveling NC By Train:\n&bull;&nbsp;&nbsp; &nbsp;Charlotte\n&bull;&nbsp;&nbsp; &nbsp;Kannapolis\n&bull;&nbsp;&nbsp; &nbsp;Salisbury\n&bull;&nbsp;&nbsp; &nbsp;High Point\n&bull;&nbsp;&nbsp; &nbsp;Greensboro\n&bull;&nbsp;&nbsp; &nbsp;Burlington\n&bull;&nbsp;&nbsp; &nbsp;Durham\n&bull;&nbsp;&nbsp; &nbsp;Cary\n&bull;&nbsp;&nbsp; &nbsp;Raleigh\n&bull;&nbsp;&nbsp; &nbsp;Selma\n&bull;&nbsp;&nbsp; &nbsp;Wilson\n&bull;&nbsp;&nbsp; &nbsp;Rocky Mount\n\nDiscount fare valid for one child with each paying adult on the Piedmont and Carolinian trains. One-day advance purchase is required. Cannot be combined with other adult discounts such as seniors, state employees or veterans. For more information visit ncbytrain.org or call 1-800-BY-TRAIN.\n\";s: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:29:\"Thu, 02 Jun 2022 18:05:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2035\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2035\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2035&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://www.kannapolisnc.gov/Community/News/ID/2034/Kannapolis-Farmers-Market-will-Feature-Live-Music#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Kannapolis Farmers Market will Feature Live Music\";s:7:\"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:101:\"https://www.kannapolisnc.gov/Community/News/ID/2034/Kannapolis-Farmers-Market-will-Feature-Live-Music\";s: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:1292:\"The Kannapolis Farmers Market will now feature live music on select nights. The market is held every Thursday, 4-7 p.m. at the corner of Vance St. and Dale Earnhardt Blvd. The market continues through September.\n\n&nbsp;\n\nLocal musicians will perform on the following dates:\n\n&nbsp;\n\n\n June 2: Shannon Lee (acoustic music)\n &nbsp;\n June 23: Jamie Brock (Nagara drums)\n &nbsp;\n July 7: Chase Killough (acoustic guitar)\n &nbsp;\n July 21: Randall Sprinkle (acoustic guitar)\n &nbsp;\n August 4: Jamie Brock (Nagara drums)\n &nbsp;\n August 18: Bil Jones (country)\n &nbsp;\n September 1: Randall Sprinkle (acoustic guitar)\n &nbsp;\n September 22: Chad Andrew Harris (acoustic bluegrass and folk)\n\n\n&nbsp;\n\n&nbsp;\n\nReturning and new vendors offer a wide variety of fresh, local produce, as well as meat, eggs, spices, crafts, and prepared foods and sauces. This year, the farmers market also has more food vendors than ever before. While supplies last, customers can receive a free reusable tote bag when making a purchase of $10 or more from a new vendor.\n\n&nbsp;\n\nSign up for text message reminders and updates about the farmers market and vendor specials. Text MARKET to 855-969-4358. You may unsubscribe at any time.\n\n&nbsp;\n\nFor customers&rsquo; convenience, most vendors accept credit/debit cards.\n\";s: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:29:\"Wed, 01 Jun 2022 19:42:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2034\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2034&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://www.kannapolisnc.gov/Community/News/ID/2033/Community-Bridge-Project-Launches-Community-Dialogue-Conversation-with-Kannapolis-Police-Chief-Scheduled#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"Community Bridge Project Launches &amp; Community Dialogue Conversation with Kannapolis Police Chief Scheduled\";s:7:\"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:156:\"https://www.kannapolisnc.gov/Community/News/ID/2033/Community-Bridge-Project-Launches-Community-Dialogue-Conversation-with-Kannapolis-Police-Chief-Scheduled\";s: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:3597:\"\nFront row; Sherry Gordon, Mayor Darrell Hinnant, Gloria Talbert, Beryl Torrence, Pastor Reginald Pharr and Pastor John Leazer.\nBack row: Police Chief Terry Spry, Pastor Willie Rash, Father Joshua Gilliam, Pastor Tracy Caldwell, City Manager Mike Legg,&nbsp; and Stephen Williamson.\nNot pictured: Dr. Greg Sloop, Pastor Farrar Griggs, Jr., Pastor Ronnie Bell, and Pastor William Moody\n\n&nbsp;\n\nA group of area ministers has launched the Community Bridge Project. Their purpose is to build positive and healthy relationships among diverse groups within the Kannapolis community. The group began meeting last year after they observed the civil unrest occurring in areas around the U.S. The group will work to accomplish their goals through intentional communication, purposeful dialogue on important issues and solving conflicts.\n\n&nbsp;\n\nTheir vision statement is Building Relationships with Intentional Dialogue, Grace, and Empathy (BRIDGE).\n\n&nbsp;\n\nThe group will center their work around public education and community dialogue about topics of particular interest to people of Kannapolis and those that may have raised levels of racial tension in other areas of the country. Topics include educating the public about affordable housing and childcare, police procedures regarding traffic stops and response to incidents, job training, entrepreneurship and much more.\n\n&nbsp;\n\nMembers of the group include: Beryl Torrence, Dr. Greg Sloop, Gloria Talbert, Pastor Farrar Griggs, Jr., Pastor John Leazer, Pastor Tracy Caldwell, Pastor Ronnie Bell, Pastor Reginald Pharr, Pastor William Moody, Pastor Willie Rash, Stephen Williamson, Kannapolis Police Chief Terry Spry, Kannapolis City Manager Mike Legg, Father Joshua Gilliam, Kannapolis Mayor Darrell Hinnant and Kannapolis Community Development Program Administrator Sherry Gordon.\n\n&nbsp;\n\nCenterview Baptist Church Pastor Willie Rash, who has lived in Kannapolis for 26 years, and a member of the Community Bridge Project said, &ldquo;We believe pastors and churches have something to offer our city. We can help each other express ourselves in a peaceful way and build bridges between ourselves and our city leaders. We want to develop relationships with each other now, so that if we ever have difficulties or misunderstandings, we will be able to work through them in a positive and constructive manner.&rdquo;\n\n&nbsp;\n\n&ldquo;I have also lived in Kannapolis for over twenty years and one of the best things about our City is the sense of community we have. We are a growing City with people from many diverse backgrounds and differing views. The Community Bridge Project can help our growing community have positive interactions with each other and city staff,&rdquo; said Beryl Torrance, who is a Sunday School teacher at Journey United Methodist Church.\n\n&nbsp;\n\nTheir first event will be a community dialogue conversation with Kannapolis Police Chief Terry Spry. The conversation will take place from 6-7 p.m. on June 16 at Kannapolis Middle School. The school is located at 1000 Virginia Dare Street. The community is welcome to attend and meet the Community Bridge Project members and Chief Spry and have a conversation regarding anything related to the Kannapolis Police Department and the community.\n\n&nbsp;\n\n&ldquo;We look forward to this conversation with Chief Spry and the many more opportunities we will have to learn and work together as a community. We welcome input from everyone in our City,&rdquo; said Rash.\n\n&nbsp;\n\nFor more information on the June 16 conversation and the group send an email to ktownbridge280@gmail.com.\n\";s: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:29:\"Wed, 01 Jun 2022 12:52:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2033\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2033\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2033&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://www.kannapolisnc.gov/Community/News/ID/2032/Citizens-Graduate-from-Kannapolis-Fire-Academy#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Citizens Graduate from Kannapolis Fire Academy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://www.kannapolisnc.gov/Community/News/ID/2032/Citizens-Graduate-from-Kannapolis-Fire-Academy\";s: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:948:\"\nFront Row (left to right): Sandra O&rsquo;Dell, Christine Drumm, Pam Overcash, Emma Greene, Gail Pieper\nBack Row: Deputy Chief Kirk Beard, Diana Shipe, Russell Hoyser, Keith, Overcash, Brian Most, Nick Smith, Division Chief Greg Summitt, Fire Chief Tracy Winecoff\nNot pictured: Ana Contreras, Carolyn Conley, Richard Conley, Logan Norris\n\n&nbsp;\n\nA number of City of Kannapolis residents have graduated from the Kannapolis Citizen Fire Academy. The academy concentrates on the services and functions of the Kannapolis Fire Department and provides citizens with a better understanding of what it takes to be a firefighter.\n\n&nbsp;\n\nCitizens participating in the free ten week fire academy toured fire stations, learned the history of fire service, fire prevention, education and investigation, emergency driving, rescue operations and more.\n\n&nbsp;\n\nThe academy will be held again in Spring 2023. Applications can be found at www.kannapolisnc.gov.\n\";s: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:29:\"Tue, 31 May 2022 14:26:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2032\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2032\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2032&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.kannapolisnc.gov/Community/News/ID/2031/Memorial-Day-Ceremony-Will-Be-Held-May-30th#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Memorial Day Ceremony Will Be Held May 30th\";s:7:\"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:95:\"https://www.kannapolisnc.gov/Community/News/ID/2031/Memorial-Day-Ceremony-Will-Be-Held-May-30th\";s: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:515:\"The Kannapolis Memorial Day Ceremony will be held in Veterans Park at 12 p.m. on Monday, May 30th. The ceremony will include remarks from guest speaker Major General Charles H. Swannack Jr. of the U.S. Army. There will also be special patriotic music performances and a wreath laying ceremony.&nbsp;\n\n&nbsp;\n\nEveryone is asked to bring lawn chairs and American flags to wave during the ceremony. For more information contact Jimmy Wilson, Ceremony Organizing Chairman for the American Legion at 704-794-3417.&nbsp;\n\";s: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:29:\"Tue, 24 May 2022 20:02:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2031\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2031\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2031&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://www.kannapolisnc.gov/Community/News/ID/2029/City-of-Kannapolis-Police-Department-Awards-Presented#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"City of Kannapolis Police Department Awards Presented\";s:7:\"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:105:\"https://www.kannapolisnc.gov/Community/News/ID/2029/City-of-Kannapolis-Police-Department-Awards-Presented\";s: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:3145:\"\nEric Albright and Officer Carson\n\n&nbsp;\n\nThe Kannapolis Police Department recently held its annual police awards ceremony. Two members of the Kannapolis Police Department were recently honored with the most prestigious awards given by the department.\n\n&nbsp;\n\nOfficer Robert Carson was presented with the Roger Dale Carter Memorial Service Award, given in memory of Kannapolis Police Officer Carter, who died in the line of duty on December 31, 1993.\n\n&nbsp;\n\nTelecommunicator Eric Albright was awarded the Norma C. Howard Memorial Service Award. Norma Howard was the first female and full-time civilian police employee in Kannapolis and was instrumental in establishing the records management system.\n\n&nbsp;\n\nThe Norma C. Howard Memorial Service Award is presented annually to a civilian police department employee who conducts both their personal and professional lives in a manner that is consistent with the department&rsquo;s values and code of ethics.\n\n&nbsp;\n\nEric is a native of Rowan County. He has completed numerous training classes at Rowan Cabarrus Community College in the areas of public and emergency services. He has been interested in the field of emergency services since he was 14 years old and has led to a career in emergency services. Eric joined the Kannapolis Police Department in 2017 as a telecommunicator and he serves as a member of the Unmanned Aerial (Drone) Systems Unit and the Search and Rescue Team. He is also a member of the Rowan County Rescue Squad. Eric is the son of Faron Albright and the late Bonnie Albright.\n\n&nbsp;\n\n&ldquo;Eric was chosen by his peers for this honor. He is recognized by his coworkers as having a strong work ethic, being a person of integrity and being dedicated to our department. He is a valued member of our Kannapolis Police Department,&rdquo; said Captain Chris Hill.\n\n&nbsp;\n\nEach year, an officer is presented with the Roger Dale Carter Memorial Service Award. Officer Robert Carson is the recipient this year. Robert has worked for the Kannapolis Police Department since 2013. He has served as a patrol officer and is currently a School Resource Officer and D.A.R.E. Officer. In his role as a School Resource/D.A.R.E. Officer Robert is in six elementary schools engaging with students and teachers daily. He is also a Crisis Negotiator for the department&rsquo;s Special Response Team. In addition to his professional duties Robert is active in the community. He spends countless hours organizing outreach events such as Toys for Tots in order to help some of the most needy people in the community.\n\n&nbsp;\n\n&ldquo;Robert is always ensuring that things that need to be done are done. He doesn&rsquo;t need to be asked. This is also true of things that need to be accomplished in the community. He learns of a need or project, and he organizes people and resources to get it done. We are very fortunate to have him here in Kannapolis,&rdquo; commented Kannapolis Police Chief Terry Spry.\n\n&nbsp;\n\nHe and his wife, Leanne, live in Kannapolis and have three children, Jack, Chase and Emma. They attend Central Baptist Church. He is the son of Raymond and Patricia Carson.\n\";s: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:29:\"Mon, 23 May 2022 18:34:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2029\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2029&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://www.kannapolisnc.gov/Community/News/ID/2028/Kannapolis-Youth-Council-Receives-State-Charter#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Kannapolis Youth Council Receives State Charter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://www.kannapolisnc.gov/Community/News/ID/2028/Kannapolis-Youth-Council-Receives-State-Charter\";s: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:2317:\"The Kannapolis Youth Council has been awarded a state charter from the N.C. Department of Administration. They are one of 24 youth councils in North Carolina. The Kannapolis Youth Council was established by the Kannapolis City Council in late 2020 and members were appointed in 2021.\n\n&nbsp;\n\nIn order to achieve state certification, the youth council completed a number of civic and social projects in 2021 including holding monthly meetings, participating in the Veterans Food Drive, conducting bloodmobiles, purchasing Christmas gifts for other youth in need and working city events such as the Tree Lighting Ceremony. The group also learned about local government and City of Kannapolis Departments such as administration, fire, police and public works.\n\n&nbsp;\n\nAs a state-charted youth council, the group will now be able to participate in state youth government learning experiences throughout the school year.\n\n&nbsp;\n\nThe City Council&rsquo;s goal for the youth council is to create opportunities for students to become engaged in leadership development, provide avenues for high school students to volunteer, develop leadership skills, develop high standards for behavior, to refine communication abilities, practice teamwork and to have a line of communication to the adult leadership in the decision-making process of the City. The formation of the Youth Council was the result of conversations between council members and area high school students.\n\n&nbsp;\n\nThe youth council is composed of high school students who reside in Kannapolis and they represent the geographic and educational diversity of the City with participants from the two public high schools located in the City, students living in the City but attending other public high schools, home school students, charter schools and private high schools.\n\n&nbsp;\n\nBrock Morgan, an A.L. Brown student, and Allison Gordon, a Northwest Cabarrus High School student, served as co-chairs of the group. Other inaugural members include:\n\nAlly Zendejas, Amber Barnes, Ashley Burris, Carly Stegall, Caroline Barlow, Celeste Martinez, Courtney Graham, Destiny Davis, Gabe Perry, Joseph Levy, Kevin Lo, Lillian Watkins, Lissette Gutierrez Cruz, Marin Powell, Nevaeh Williams, Niya Kerr, Samantha Holman, Shriya Agarwal, Trent Thompson and Yesenia Hubbard.\n\";s: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:29:\"Wed, 18 May 2022 20:07:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2028\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2028\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2028&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s: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:66:\"\n     \n     \n     \n     \n     \n     \n     \n     \n     \n     \n    \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:6:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"https://www.kannapolisnc.gov/Community/News/ID/2027/City-of-Kannapolis-Receives-Prestigious-National-Award-for-Downtown-Revitalization-Project#Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"City of Kannapolis Receives Prestigious National Award for  Downtown Revitalization Project\";s:7:\"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:142:\"https://www.kannapolisnc.gov/Community/News/ID/2027/City-of-Kannapolis-Receives-Prestigious-National-Award-for-Downtown-Revitalization-Project\";s: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:1831:\"The City of Kannapolis has been honored with the prestigious American Planning Association Excellence in Economic Development Award. The City was recognized for its Downtown Master Plan which resulted in the completion of new infrastructure, the West Avenue Linear Park, the VIDA parking deck and the Atrium Health Ballpark.\n\n&nbsp;\n\nThe honor is considered the Top Award for Excellence in Best Practices that can be achieved by a City. Presented annually the award is given by the American Planning Association. &ldquo;The City of Kannapolis was selected on the basis of their written downtown master plan, the scale of the project, the successful completion and implementation of the project. The project was also noted as being a project that could be emulated and repeated elsewhere in the United States.\n\n&nbsp;\n\n&ldquo;We are excited to be recognized nationally with this award from the American Planning Association and their professional membership. We judge our success by the thousands of people enjoying our downtown weekly but it is an honor to be seen as a model for economic development on a national level. The City Council, staff and our contractors have worked very hard to ensure our downtown has something for everyone and will continue to attract businesses and people for decades to come,&rdquo; said Kannapolis Mayor Darrell Hinnant.\n\n&nbsp;\n\nThe City would like to recognize key partners of the project during its planning and construction phase including: Barton Malow, Creech, Development Finance Initiative, Land Design, Lansing Melbourne Group, Populous and Temerity.&nbsp;\n\n&nbsp;\n\nThe award was presented at the American Planning Association&rsquo;s National Conference in San Diego recently to Assistant City Manager Wilmer Melton who gave a presentation on the Downtown Revitalization Project.&nbsp;\n\";s: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:29:\"Tue, 17 May 2022 17:54:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"f1397696-738c-4295-afcd-943feb885714:2027\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://www.kannapolisnc.gov/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=95&ModuleID=428&ArticleID=2027\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:53:\"http://madskills.com/public/xml/rss/module/trackback/\";a:1:{s:4:\"ping\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://www.kannapolisnc.gov:443/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2027&PortalID=0&TabID=95\";s: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:\"Margaret Young\";s:7:\"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:10:{s:13:\"cache-control\";s:7:\"private\";s:12:\"content-type\";s:23:\"text/xml; charset=utf-8\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"set-cookie\";s:223:\"dnn_IsMobile=False; path=/; HttpOnly, .ASPXANONYMOUS=45nb_sKyLYdILqEuUER2BTC9Xgq_m8AbJUWLwKPCDLpaZa5RqUvrkbVGFHIvQukaAPQZ3u2csgSKDZmK9fFaK1ypFC1SvHKKxndMA2JagaZeJD_40; expires=Sun, 18-Sep-2022 00:43:00 GMT; path=/; HttpOnly\";s:18:\"x-powered-by-plesk\";s:8:\"PleskWin\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"date\";s:29:\"Sun, 10 Jul 2022 14:03:00 GMT\";s:14:\"content-length\";s:5:\"25455\";}}s:5:\"build\";s:14:\"20220218033513\";}','no'),(1840321,'c52b7b0e0_eael_updated_at','1656030088','no'),(1527937,'ai1wm_secret_key','DJ3As8VLU2Bc','yes'),(1682682,'action_scheduler_migration_status','complete','yes'),(1527941,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:326:\"<a href=\"https://lantern-realty.com/wp-content/ai1wm-backups/lantern-realty.com-20220416-153050-pe5927.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"lantern-realty.com\" download=\"lantern-realty.com-20220416-153050-pe5927.wpress\"><span>Download lantern-realty.com</span><em>Size: 1 GB</em></a>\";}','yes'),(1551673,'wpl_auto_tour','1','yes'),(1893786,'_transient_timeout_rsssl_can_use_curl_headers_check','1657654841','no'),(1893787,'_transient_rsssl_can_use_curl_headers_check','a:7:{i:0;s:25:\"Upgrade Insecure Requests\";i:1;s:16:\"X-XSS protection\";i:2;s:22:\"X-Content Type Options\";i:3;s:15:\"Referrer-Policy\";i:4;s:15:\"X-Frame-Options\";i:5;s:18:\"Permissions-Policy\";i:6;s:30:\"HTTP Strict Transport Security\";}','no'),(1834701,'58028e058_eael_updated_at','1656030088','no'),(1606175,'elementor_experiment-e_font_icon_svg','default','yes'),(1607186,'elementor_library_category_children','a:0:{}','yes'),(1607189,'baba50589_eael_updated_at','1651355543','no'),(1606176,'elementor_experiment-additional_custom_breakpoints','default','yes'),(1606177,'elementor_experiment-container','default','yes'),(1606178,'elementor_experiment-e_dom_optimization','default','yes'),(1606179,'elementor_experiment-a11y_improvements','default','yes'),(1606180,'elementor_experiment-e_import_export','default','yes'),(1606181,'elementor_experiment-e_hidden_wordpress_widgets','default','yes'),(1606182,'elementor_experiment-landing-pages','default','yes'),(1606183,'elementor_experiment-elements-color-picker','default','yes'),(1606184,'elementor_experiment-favorite-widgets','default','yes'),(1606185,'elementor_experiment-admin-top-bar','default','yes'),(1607844,'rsssl_all_tasks','1','yes'),(1606171,'elementor_google_maps_api_key','','yes'),(1606172,'elementor_font_display','auto','yes'),(1606173,'elementor_experiment-e_optimized_assets_loading','default','yes'),(1627392,'wdev_logger_wp-smushit','a:3:{s:6:\"option\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:13:\"global_module\";s:5:\"smush\";}s:7:\"modules\";a:10:{s:5:\"smush\";a:8:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:16:\"is_global_module\";b:1;s:4:\"name\";s:5:\"smush\";}s:3:\"cdn\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:3:\"cdn\";}s:4:\"lazy\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:4:\"lazy\";}s:4:\"webp\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:4:\"webp\";}s:7:\"png2jpg\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:7:\"png2jpg\";}s:6:\"resize\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:6:\"resize\";}s:3:\"dir\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:3:\"dir\";}s:6:\"backup\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:6:\"backup\";}s:3:\"api\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:3:\"api\";}s:12:\"integrations\";a:7:{s:25:\"use_native_filesystem_api\";b:1;s:12:\"max_log_size\";i:10;s:28:\"expected_log_size_in_percent\";d:0.6999999999999999555910790149937383830547332763671875;s:7:\"log_dir\";s:13:\"uploads/smush\";s:15:\"add_subsite_dir\";b:1;s:10:\"is_private\";b:1;s:4:\"name\";s:12:\"integrations\";}}s:13:\"global_module\";s:5:\"smush\";}','no'),(1582763,'wpl_gmap_hits_date_14','2022-05-12','yes'),(1582764,'wpl_gmap_hits_14','1','yes'),(1607755,'WpFastestCacheCDN','[{\"id\":\"photon\",\"cdnurl\":\"http:\\/\\/i0.wp.com\\/lantern-realty.com\",\"originurl\":\"lantern-realty.com\",\"file_types\":\"gif,jpeg,jpg,png\",\"keywords\":\"\",\"excludekeywords\":\"\"}]','yes'),(1913082,'_transient_timeout_global_styles_houzez','1657490925','no'),(1913083,'_transient_global_styles_houzez','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(1787437,'_transient_timeout_feed_mod_31cf07fc8144de8a7ff49e57a683f0de','1657504980','no'),(1787438,'_transient_feed_mod_31cf07fc8144de8a7ff49e57a683f0de','1657461780','no'),(1896831,'_transient_tsf_exclude_1_1_en_us','a:2:{s:7:\"archive\";a:0:{}s:6:\"search\";a:3:{i:0;i:1217;i:1;i:916;i:2;i:1175;}}','yes'),(1912968,'_transient_timeout_ihf_cache_11b53b4ccf791dcf849991f45df45f06','1657492027','no'),(1912969,'_transient_ihf_cache_11b53b4ccf791dcf849991f45df45f06','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";s:29:\"Sun, 10 Jul 2022 21:27:07 GMT\";s:12:\"content-type\";s:22:\"text/xml;charset=UTF-8\";s:16:\"content-language\";s:2:\"en\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:3:\"p3p\";s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901799449; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:27:07 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS+qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9+UJdpY25dJb7AE5vcYI=; path=/; expires=Sun, 10-Jul-22 21:57:07 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"728c61aefab47ee9-LAX\";s:16:\"content-encoding\";s:2:\"br\";}}s:4:\"body\";s:1195:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <ihf-two-line-quick-search> Loading... <script>document.currentScript.parentElement.config={host:\"https://www.idxhome.com\",clientId:123710,sessionId:\"4cc58398-7597-444b-8581-d9e1914b5c88\",leadCaptureUserId:8901799449,showPropertyType:false};</script> </ihf-two-line-quick-search> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901799449</leadCaptureId> <ihfSessionId>4cc58398-7597-444b-8581-d9e1914b5c88</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657445852448</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657445852448</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657445852448</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:3:{i:0;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901799449\";s:7:\"expires\";i:1689024427;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:1;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4\";s:7:\"expires\";N;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:2;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9 UJdpY25dJb7AE5vcYI=\";s:7:\"expires\";i:1657490227;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:11:\"idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:0;}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:1195:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <ihf-two-line-quick-search> Loading... <script>document.currentScript.parentElement.config={host:\"https://www.idxhome.com\",clientId:123710,sessionId:\"4cc58398-7597-444b-8581-d9e1914b5c88\",leadCaptureUserId:8901799449,showPropertyType:false};</script> </ihf-two-line-quick-search> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901799449</leadCaptureId> <ihfSessionId>4cc58398-7597-444b-8581-d9e1914b5c88</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657445852448</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657445852448</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657445852448</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:3:\"raw\";s:2169:\"HTTP/1.1 200 OK\r\nDate: Sun, 10 Jul 2022 21:27:07 GMT\r\nContent-Type: text/xml;charset=UTF-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nContent-Language: en\r\nVary: Accept-Encoding\r\nP3P: CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\r\nSet-Cookie: cuser123710=8901799449; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:27:07 GMT; Path=/; SameSite=None; Secure\r\nCF-Cache-Status: DYNAMIC\r\nExpect-CT: max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\r\nSet-Cookie: SESSION=NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\r\nSet-Cookie: __cf_bm=SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS+qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9+UJdpY25dJb7AE5vcYI=; path=/; expires=Sun, 10-Jul-22 21:57:07 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\r\nServer: cloudflare\r\nCF-RAY: 728c61aefab47ee9-LAX\r\nContent-Encoding: br\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <ihf-two-line-quick-search> Loading... <script>document.currentScript.parentElement.config={host:\"https://www.idxhome.com\",clientId:123710,sessionId:\"4cc58398-7597-444b-8581-d9e1914b5c88\",leadCaptureUserId:8901799449,showPropertyType:false};</script> </ihf-two-line-quick-search> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901799449</leadCaptureId> <ihfSessionId>4cc58398-7597-444b-8581-d9e1914b5c88</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657445852448</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657445852448</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657445852448</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";a:1:{i:0;s:29:\"Sun, 10 Jul 2022 21:27:07 GMT\";}s:12:\"content-type\";a:1:{i:0;s:22:\"text/xml;charset=UTF-8\";}s:16:\"content-language\";a:1:{i:0;s:2:\"en\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:3:\"p3p\";a:1:{i:0;s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";}s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901799449; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:27:07 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS+qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9+UJdpY25dJb7AE5vcYI=; path=/; expires=Sun, 10-Jul-22 21:57:07 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";a:1:{i:0;s:7:\"DYNAMIC\";}s:9:\"expect-ct\";a:1:{i:0;s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";}s:6:\"server\";a:1:{i:0;s:10:\"cloudflare\";}s:6:\"cf-ray\";a:1:{i:0;s:20:\"728c61aefab47ee9-LAX\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:234:\"https://www.idxhome.com/service/wordpress?requestType=listing-search-form&smallView=true&style=twoline&showPropertyType=false&authenticationToken=57ba1f9b-a303-4b2e-90eb-792602d7dc93&version=7.1.0&leadCaptureSupport=true&phpStyle=true\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:3:{s:11:\"cuser123710\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901799449\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"max-age\";i:1689024427;s:7:\"expires\";i:1689024427;s:4:\"path\";s:1:\"/\";s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657488427;s:11:\"last-access\";i:1657488427;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657488427;}s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NGNjNTgzOTgtNzU5Ny00NDRiLTg1ODEtZDllMTkxNGI1Yzg4\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:5:{s:4:\"path\";s:1:\"/\";s:8:\"httponly\";b:1;s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657488427;s:11:\"last-access\";i:1657488427;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657488427;}s:7:\"__cf_bm\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"SxnIIM18r3ktqYuMNWN31TiydeeP02YRZAjvFVx3.sA-1657488427-0-ATKOS+qX11tHTlFHTHanvee3grh2luyhVZR1mlZMQLA7XiFi4P1uFOILj5ybb4ao3hh9+UJdpY25dJb7AE5vcYI=\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:4:\"path\";s:1:\"/\";s:7:\"expires\";i:1657490227;s:6:\"domain\";s:11:\"idxhome.com\";s:8:\"httponly\";b:1;s:6:\"secure\";b:1;s:8:\"samesite\";s:4:\"None\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657488427;s:11:\"last-access\";i:1657488427;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1657488427;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(1913015,'_transient_timeout_ihf_cache_fcf02c83b3238c61960dddcc84ec7c53','1657491249','no');
INSERT INTO `lrwp_options` VALUES (1913016,'_transient_ihf_cache_fcf02c83b3238c61960dddcc84ec7c53','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";s:29:\"Sun, 10 Jul 2022 21:44:09 GMT\";s:12:\"content-type\";s:22:\"text/xml;charset=UTF-8\";s:16:\"content-language\";s:2:\"en\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:3:\"p3p\";s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901884996; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:44:08 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO+5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=; path=/; expires=Sun, 10-Jul-22 22:14:09 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"728c7a9fbdc27d7a-LAX\";s:16:\"content-encoding\";s:2:\"br\";}}s:4:\"body\";s:8132:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <div id=\"ihf-main-container\" class=\"ihf-container ihf-color-scheme-blue\"> <div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881311\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"247900.00\" data-ihf-listing-address=\"201 Mcgill Avenue, Concord, NC 28025\" data-ihf-listing-postal-code=\"28025\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\" class=\"ihf-txt-uc\"> 201 Mcgill Avenue, Concord, NC 28025 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/c8ec286d-0617-4463-a203-826863679a86.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $247,900 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,377 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881917\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"429999.00\" data-ihf-listing-address=\"6603 Reedy Creek Road, Charlotte, NC 28215\" data-ihf-listing-postal-code=\"28215\" data-ihf-listing-agent-code=\"79218\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\" class=\"ihf-txt-uc\"> 6603 Reedy Creek Road, Charlotte, NC 28215 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $429,999 </span> (Coming Soon) </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 2,223 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3879835\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"615000.00\" data-ihf-listing-address=\"1825 Archdale Drive, Charlotte, NC 28210\" data-ihf-listing-postal-code=\"28210\" data-ihf-listing-agent-code=\"63290\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\" class=\"ihf-txt-uc\"> 1825 Archdale Drive, Charlotte, NC 28210 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/8f109679-0c63-4662-adaf-4680c44c3960.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $615,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,477 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3878653\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"235000.00\" data-ihf-listing-address=\"2125 Daugherty Road, China Grove, NC 28023\" data-ihf-listing-postal-code=\"28023\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\" class=\"ihf-txt-uc\"> 2125 Daugherty Road, China Grove, NC 28023 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/4e5c6c28-444c-4a8c-acd1-67c4625966d6.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $235,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,572 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> </div> </div> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901884996</leadCaptureId> <ihfSessionId>4c42ff11-ccb1-4f0e-892e-afd48d9148c2</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657447646076</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657447646076</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657447646076</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:3:{i:0;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901884996\";s:7:\"expires\";i:1689025448;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:1;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy\";s:7:\"expires\";N;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:15:\"www.idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:1;}i:2;O:14:\"WP_Http_Cookie\":7:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO 5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=\";s:7:\"expires\";i:1657491249;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:11:\"idxhome.com\";s:4:\"port\";N;s:9:\"host_only\";b:0;}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:8132:\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <div id=\"ihf-main-container\" class=\"ihf-container ihf-color-scheme-blue\"> <div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881311\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"247900.00\" data-ihf-listing-address=\"201 Mcgill Avenue, Concord, NC 28025\" data-ihf-listing-postal-code=\"28025\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\" class=\"ihf-txt-uc\"> 201 Mcgill Avenue, Concord, NC 28025 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/c8ec286d-0617-4463-a203-826863679a86.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $247,900 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,377 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881917\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"429999.00\" data-ihf-listing-address=\"6603 Reedy Creek Road, Charlotte, NC 28215\" data-ihf-listing-postal-code=\"28215\" data-ihf-listing-agent-code=\"79218\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\" class=\"ihf-txt-uc\"> 6603 Reedy Creek Road, Charlotte, NC 28215 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $429,999 </span> (Coming Soon) </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 2,223 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3879835\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"615000.00\" data-ihf-listing-address=\"1825 Archdale Drive, Charlotte, NC 28210\" data-ihf-listing-postal-code=\"28210\" data-ihf-listing-agent-code=\"63290\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\" class=\"ihf-txt-uc\"> 1825 Archdale Drive, Charlotte, NC 28210 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/8f109679-0c63-4662-adaf-4680c44c3960.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $615,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,477 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3878653\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"235000.00\" data-ihf-listing-address=\"2125 Daugherty Road, China Grove, NC 28023\" data-ihf-listing-postal-code=\"28023\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\" class=\"ihf-txt-uc\"> 2125 Daugherty Road, China Grove, NC 28023 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/4e5c6c28-444c-4a8c-acd1-67c4625966d6.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $235,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,572 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> </div> </div> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901884996</leadCaptureId> <ihfSessionId>4c42ff11-ccb1-4f0e-892e-afd48d9148c2</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657447646076</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657447646076</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657447646076</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:3:\"raw\";s:9106:\"HTTP/1.1 200 OK\r\nDate: Sun, 10 Jul 2022 21:44:09 GMT\r\nContent-Type: text/xml;charset=UTF-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nContent-Language: en\r\nVary: Accept-Encoding\r\nP3P: CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\r\nSet-Cookie: cuser123710=8901884996; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:44:08 GMT; Path=/; SameSite=None; Secure\r\nCF-Cache-Status: DYNAMIC\r\nExpect-CT: max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\r\nSet-Cookie: SESSION=NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\r\nSet-Cookie: __cf_bm=KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO+5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=; path=/; expires=Sun, 10-Jul-22 22:14:09 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\r\nServer: cloudflare\r\nCF-RAY: 728c7a9fbdc27d7a-LAX\r\nContent-Encoding: br\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<ihfContent> <view> <![CDATA[ <div style=\"display: inline;\" data-ihf-client-id=\"123710\"> <div id=\"ihf-main-container\" class=\"ihf-container ihf-color-scheme-blue\"> <div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881311\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"247900.00\" data-ihf-listing-address=\"201 Mcgill Avenue, Concord, NC 28025\" data-ihf-listing-postal-code=\"28025\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\" class=\"ihf-txt-uc\"> 201 Mcgill Avenue, Concord, NC 28025 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/201-MCGILL-AVENUE-CONCORD-NC-28025/3881311/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/c8ec286d-0617-4463-a203-826863679a86.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $247,900 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,377 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3881917\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"429999.00\" data-ihf-listing-address=\"6603 Reedy Creek Road, Charlotte, NC 28215\" data-ihf-listing-postal-code=\"28215\" data-ihf-listing-agent-code=\"79218\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\" class=\"ihf-txt-uc\"> 6603 Reedy Creek Road, Charlotte, NC 28215 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/6603-REEDY-CREEK-ROAD-CHARLOTTE-NC-28215/3881917/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $429,999 </span> (Coming Soon) </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 2,223 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3879835\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"615000.00\" data-ihf-listing-address=\"1825 Archdale Drive, Charlotte, NC 28210\" data-ihf-listing-postal-code=\"28210\" data-ihf-listing-agent-code=\"63290\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\" class=\"ihf-txt-uc\"> 1825 Archdale Drive, Charlotte, NC 28210 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/1825-ARCHDALE-DRIVE-CHARLOTTE-NC-28210/3879835/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/8f109679-0c63-4662-adaf-4680c44c3960.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $615,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,477 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>2</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> <div class=\"gallery-prop-info\" data-ihf-listing-number=\"3878653\" data-ihf-listing-board-id=\"44\" data-ihf-listing-price=\"235000.00\" data-ihf-listing-address=\"2125 Daugherty Road, China Grove, NC 28023\" data-ihf-listing-postal-code=\"28023\" data-ihf-listing-agent-code=\"31636\"> <div class=\"row\"> <div class=\"col-xs-12 address\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\" class=\"ihf-txt-uc\"> 2125 Daugherty Road, China Grove, NC 28023 </a> </div> </div> <div class=\"row\"> <div class=\"col-xs-12 gallery-sidebar-photo\"> <div class=\"ihf-small-results-photo\"> <a href=\"https://lantern-realty.com/homes-for-sale-details/2125-DAUGHERTY-ROAD-CHINA-GROVE-NC-28023/3878653/44/\"> <img class=\"media-object ihf-center\" alt=\"IDX Image\" src=\"https://mlsgrid.idxhome.com/images/4e5c6c28-444c-4a8c-acd1-67c4625966d6.jpeg\" onerror=\"this.onerror=null;this.src=\'https://www.idxhome.com/service/resources/images/listing/no-photo.jpg?1657447646076\';\"/> </a> </div> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> <strong> <span class=\"ihf-for-sale-price\"> $235,000 </span> </strong> </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Beds: <b>3</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-6\"> Sq. Ft.: 1,572 </div> <div class=\"col-xs-6\" style=\"text-align: right;\"> Baths: <b>1</b> | <b>1</b> </div> </div> <div class=\"row\"> <div class=\"col-xs-9 mt-10 gallery-sellerrep\"> </div> <div class=\"col-xs-3 mt-10 ihf-results-extra-info-small\" style=\"text-align: right;\"> <img class=\"media-object pull-right\" src=\"https://pix.idxre.com/pix/agentOffice/123710_admin_logo_Facebook Logo.jpg \" alt=\"Board Logo\"/> </div> </div> <div class=\"row\"> <div class=\"col-xs-12\"> <div class=\"property-divider\">&nbsp;</div> </div> </div> </div> </div> </div> </div> ]]> </view> <excerpt></excerpt> <head> <![CDATA[ ]]> </head> <metatags> <![CDATA[ ]]> </metatags> <json></json> <clientId>123710</clientId> <leadCaptureId>8901884996</leadCaptureId> <ihfSessionId>4c42ff11-ccb1-4f0e-892e-afd48d9148c2</ihfSessionId> <listingInfo> </listingInfo> <css> <item> <name>ihf-bundle-css</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.css?1657447646076</url> </item> </css> <javascript> <item> <name>ihf-bundle-js</name> <url>https://www.idxhome.com/service/resources/dist/wordpress/bundle.js?1657447646076</url> </item> <item> <name>ihf-eureka</name> <url>https://www.idxhome.com/eureka/ihf-eureka.js?1657447646076</url> <position>footer</position> </item> </javascript> <sitemap> </sitemap> <variables> </variables> </ihfContent>\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:11:{s:4:\"date\";a:1:{i:0;s:29:\"Sun, 10 Jul 2022 21:44:09 GMT\";}s:12:\"content-type\";a:1:{i:0;s:22:\"text/xml;charset=UTF-8\";}s:16:\"content-language\";a:1:{i:0;s:2:\"en\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:3:\"p3p\";a:1:{i:0;s:68:\"CP=\"NOI DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT STA\"\";}s:10:\"set-cookie\";a:3:{i:0;s:110:\"cuser123710=8901884996; Max-Age=31536000; Expires=Mon, 10-Jul-2023 21:44:08 GMT; Path=/; SameSite=None; Secure\";i:1;s:111:\"SESSION=NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy; Path=/; HttpOnly; SameSite=Lax; SameSite=None; Secure\";i:2;s:252:\"__cf_bm=KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO+5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=; path=/; expires=Sun, 10-Jul-22 22:14:09 GMT; domain=.idxhome.com; HttpOnly; Secure; SameSite=None\";}s:15:\"cf-cache-status\";a:1:{i:0;s:7:\"DYNAMIC\";}s:9:\"expect-ct\";a:1:{i:0;s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";}s:6:\"server\";a:1:{i:0;s:10:\"cloudflare\";}s:6:\"cf-ray\";a:1:{i:0;s:20:\"728c7a9fbdc27d7a-LAX\";}s:16:\"content-encoding\";a:1:{i:0;s:2:\"br\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:229:\"https://www.idxhome.com/service/wordpress?requestType=featured-search&startRowNumber=1&numListingsLimit=4&smallView=true&authenticationToken=57ba1f9b-a303-4b2e-90eb-792602d7dc93&version=7.1.0&leadCaptureSupport=true&phpStyle=true\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:3:{s:11:\"cuser123710\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:11:\"cuser123710\";s:5:\"value\";s:10:\"8901884996\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"max-age\";i:1689025449;s:7:\"expires\";i:1689025448;s:4:\"path\";s:1:\"/\";s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489449;s:11:\"last-access\";i:1657489449;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657489449;}s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:48:\"NGM0MmZmMTEtY2NiMS00ZjBlLTg5MmUtYWZkNDhkOTE0OGMy\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:5:{s:4:\"path\";s:1:\"/\";s:8:\"httponly\";b:1;s:8:\"samesite\";s:4:\"None\";s:6:\"secure\";b:1;s:6:\"domain\";s:15:\"www.idxhome.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489449;s:11:\"last-access\";i:1657489449;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1657489449;}s:7:\"__cf_bm\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"__cf_bm\";s:5:\"value\";s:145:\"KV5tuObbJ6F4vp1YPmYxIFXg6M16pWghxNJNTkaL.qE-1657489449-0-AfBLdHO+5N3uJQkAHCpxOuls1tIl/8/XlHwc0TdLX5KnJ8hGMrUrxeZcI5I9oL2h3GkrkLz1lbuP4xDUyKVjEeU=\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:4:\"path\";s:1:\"/\";s:7:\"expires\";i:1657491249;s:6:\"domain\";s:11:\"idxhome.com\";s:8:\"httponly\";b:1;s:6:\"secure\";b:1;s:8:\"samesite\";s:4:\"None\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1657489449;s:11:\"last-access\";i:1657489449;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1657489449;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(1913086,'_transient_doing_cron','1657576762.9578840732574462890625','yes');
/*!40000 ALTER TABLE `lrwp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_pda_passwords`
--

DROP TABLE IF EXISTS `lrwp_pda_passwords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pda_passwords` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `post_id` mediumint(9) NOT NULL,
  `contact_id` mediumint(9) DEFAULT NULL,
  `campaign_app_type` text COLLATE utf8mb4_unicode_ci DEFAULT '',
  `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `is_activated` tinyint(1) DEFAULT 1,
  `created_time` bigint(20) DEFAULT NULL,
  `expired_time` bigint(20) DEFAULT NULL,
  `hits_count` mediumint(9) NOT NULL,
  `is_default` tinyint(1) DEFAULT 0,
  `expired_date` bigint(20) DEFAULT NULL,
  `usage_limit` mediumint(9) DEFAULT NULL,
  `label` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `post_types` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pda_passwords`
--

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

--
-- Table structure for table `lrwp_pm_activities`
--

DROP TABLE IF EXISTS `lrwp_pm_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_activities` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `actor_id` int(11) unsigned NOT NULL,
  `action` varchar(255) NOT NULL,
  `action_type` varchar(255) NOT NULL,
  `resource_id` int(11) unsigned DEFAULT NULL,
  `resource_type` varchar(255) DEFAULT NULL,
  `meta` text DEFAULT NULL,
  `project_id` int(11) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`),
  KEY `actor_id` (`actor_id`),
  KEY `resource_id` (`resource_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_activities`
--

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

--
-- Table structure for table `lrwp_pm_assignees`
--

DROP TABLE IF EXISTS `lrwp_pm_assignees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_assignees` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `task_id` int(11) unsigned NOT NULL,
  `assigned_to` int(11) unsigned NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `assigned_at` timestamp NULL DEFAULT NULL,
  `started_at` timestamp NULL DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `project_id` int(11) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `task_id` (`task_id`),
  KEY `assigned_to` (`assigned_to`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_assignees`
--

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

--
-- Table structure for table `lrwp_pm_boardables`
--

DROP TABLE IF EXISTS `lrwp_pm_boardables`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_boardables` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `board_id` int(11) unsigned NOT NULL,
  `board_type` varchar(255) NOT NULL,
  `boardable_id` int(11) unsigned NOT NULL,
  `boardable_type` varchar(255) NOT NULL,
  `order` int(11) NOT NULL DEFAULT 0,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `board_id` (`board_id`),
  KEY `boardable_id` (`boardable_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_boardables`
--

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

--
-- Table structure for table `lrwp_pm_boards`
--

DROP TABLE IF EXISTS `lrwp_pm_boards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_boards` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `order` int(11) unsigned DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `status` tinyint(2) unsigned NOT NULL DEFAULT 1,
  `is_private` tinyint(2) unsigned DEFAULT 0,
  `project_id` int(11) unsigned NOT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_boards`
--

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

--
-- Table structure for table `lrwp_pm_capabilities`
--

DROP TABLE IF EXISTS `lrwp_pm_capabilities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_capabilities` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_capabilities`
--

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

--
-- Table structure for table `lrwp_pm_categories`
--

DROP TABLE IF EXISTS `lrwp_pm_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_categories` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `categorible_type` varchar(255) DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_categories`
--

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

--
-- Table structure for table `lrwp_pm_category_project`
--

DROP TABLE IF EXISTS `lrwp_pm_category_project`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_category_project` (
  `project_id` int(11) unsigned NOT NULL,
  `category_id` int(11) unsigned NOT NULL,
  KEY `project_id` (`project_id`),
  KEY `category_id` (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_category_project`
--

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

--
-- Table structure for table `lrwp_pm_comments`
--

DROP TABLE IF EXISTS `lrwp_pm_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_comments` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `content` text NOT NULL,
  `mentioned_users` varchar(255) DEFAULT NULL,
  `commentable_id` int(11) unsigned NOT NULL,
  `commentable_type` varchar(255) NOT NULL,
  `project_id` int(11) unsigned NOT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`),
  KEY `commentable_id` (`commentable_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_comments`
--

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

--
-- Table structure for table `lrwp_pm_files`
--

DROP TABLE IF EXISTS `lrwp_pm_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_files` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `fileable_id` int(11) DEFAULT NULL,
  `fileable_type` varchar(255) DEFAULT NULL,
  `type` varchar(255) NOT NULL DEFAULT 'file',
  `attachment_id` bigint(20) DEFAULT NULL,
  `parent` int(11) NOT NULL DEFAULT 0,
  `project_id` int(11) unsigned DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`),
  KEY `fileable_id` (`fileable_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_files`
--

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

--
-- Table structure for table `lrwp_pm_imports`
--

DROP TABLE IF EXISTS `lrwp_pm_imports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_imports` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(40) NOT NULL,
  `remote_id` varchar(150) NOT NULL,
  `local_id` varchar(150) NOT NULL,
  `creator_id` int(15) unsigned DEFAULT NULL,
  `source` varchar(30) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_imports`
--

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

--
-- Table structure for table `lrwp_pm_meta`
--

DROP TABLE IF EXISTS `lrwp_pm_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_meta` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `entity_id` int(11) unsigned NOT NULL,
  `entity_type` varchar(255) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` text DEFAULT NULL,
  `project_id` int(11) unsigned DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entity_id` (`entity_id`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_meta`
--

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

--
-- Table structure for table `lrwp_pm_projects`
--

DROP TABLE IF EXISTS `lrwp_pm_projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_projects` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `budget` double(8,2) DEFAULT NULL,
  `pay_rate` double(8,2) DEFAULT NULL,
  `est_completion_date` timestamp NULL DEFAULT NULL,
  `color_code` varchar(255) DEFAULT NULL,
  `order` tinyint(4) DEFAULT NULL,
  `projectable_type` varchar(255) DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_projects`
--

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

--
-- Table structure for table `lrwp_pm_role_project`
--

DROP TABLE IF EXISTS `lrwp_pm_role_project`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_role_project` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `project_id` int(20) unsigned NOT NULL,
  `role_id` int(20) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_role_project`
--

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

--
-- Table structure for table `lrwp_pm_role_project_capabilities`
--

DROP TABLE IF EXISTS `lrwp_pm_role_project_capabilities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_role_project_capabilities` (
  `role_project_id` int(20) unsigned NOT NULL,
  `capability_id` int(20) unsigned NOT NULL,
  KEY `role_project_id` (`role_project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_role_project_capabilities`
--

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

--
-- Table structure for table `lrwp_pm_role_project_users`
--

DROP TABLE IF EXISTS `lrwp_pm_role_project_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_role_project_users` (
  `role_project_id` int(20) unsigned NOT NULL,
  `user_id` int(20) unsigned NOT NULL,
  KEY `role_project_id` (`role_project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_role_project_users`
--

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

--
-- Table structure for table `lrwp_pm_role_user`
--

DROP TABLE IF EXISTS `lrwp_pm_role_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_role_user` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) unsigned NOT NULL,
  `role_id` int(11) unsigned NOT NULL,
  `project_id` int(11) unsigned DEFAULT NULL,
  `assigned_by` int(11) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`),
  KEY `role_id` (`role_id`),
  KEY `user_id` (`user_id`),
  KEY `assigned_by` (`assigned_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_role_user`
--

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

--
-- Table structure for table `lrwp_pm_roles`
--

DROP TABLE IF EXISTS `lrwp_pm_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_roles` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `status` tinyint(2) unsigned NOT NULL DEFAULT 1,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_roles`
--

LOCK TABLES `lrwp_pm_roles` WRITE;
/*!40000 ALTER TABLE `lrwp_pm_roles` DISABLE KEYS */;
INSERT INTO `lrwp_pm_roles` VALUES (1,'Manager','manager','Manager is a person who manages the project.',1,1,1,'2020-10-11 00:17:12','2020-10-11 00:17:12'),(2,'Co-Worker','co_worker','Co-worker is person who works under a project.',1,1,1,'2020-10-11 00:17:12','2020-10-11 00:17:12');
/*!40000 ALTER TABLE `lrwp_pm_roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lrwp_pm_settings`
--

DROP TABLE IF EXISTS `lrwp_pm_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_settings` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) NOT NULL,
  `value` text DEFAULT NULL,
  `project_id` int(11) unsigned DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_settings`
--

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

--
-- Table structure for table `lrwp_pm_task_type_task`
--

DROP TABLE IF EXISTS `lrwp_pm_task_type_task`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_task_type_task` (
  `type_id` int(11) unsigned NOT NULL,
  `task_id` int(11) unsigned NOT NULL,
  `project_id` int(11) unsigned NOT NULL,
  `list_id` int(11) unsigned NOT NULL,
  UNIQUE KEY `task_id` (`task_id`),
  KEY `type_id` (`type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_task_type_task`
--

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

--
-- Table structure for table `lrwp_pm_task_types`
--

DROP TABLE IF EXISTS `lrwp_pm_task_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_task_types` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `type` varchar(255) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_task_types`
--

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

--
-- Table structure for table `lrwp_pm_tasks`
--

DROP TABLE IF EXISTS `lrwp_pm_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_pm_tasks` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `estimation` int(11) DEFAULT 0,
  `start_at` timestamp NULL DEFAULT NULL,
  `due_date` timestamp NULL DEFAULT NULL,
  `complexity` tinyint(4) DEFAULT NULL,
  `priority` tinyint(4) NOT NULL DEFAULT 1,
  `payable` tinyint(1) NOT NULL DEFAULT 0,
  `recurrent` tinyint(1) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL DEFAULT 0,
  `is_private` tinyint(2) unsigned DEFAULT 0,
  `project_id` int(11) unsigned NOT NULL,
  `parent_id` int(11) unsigned NOT NULL DEFAULT 0,
  `completed_by` int(11) unsigned DEFAULT NULL,
  `completed_at` timestamp NULL DEFAULT NULL,
  `created_by` int(11) unsigned DEFAULT NULL,
  `updated_by` int(11) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_pm_tasks`
--

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

--
-- Table structure for table `lrwp_postmeta`
--

DROP TABLE IF EXISTS `lrwp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lrwp_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=15088 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lrwp_postmeta`
--

LOCK TABLES `lrwp_postmeta` WRITE;
/*!40000 ALTER TABLE `lrwp_postmeta` DISABLE KEYS */;
INSERT INTO `lrwp_postmeta` VALUES (182,2,'_edit_last','1'),(1040,3,'_edit_last','1'),(3,4,'_menu_item_type','custom'),(4,4,'_menu_item_menu_item_parent','0'),(5,4,'_menu_item_object_id','4'),(6,4,'_menu_item_object','custom'),(7,4,'_menu_item_target',''),(8,4,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9,4,'_menu_item_xfn',''),(10,4,'_menu_item_url','/'),(11,5,'_menu_item_type','custom'),(12,5,'_menu_item_menu_item_parent','0'),(13,5,'_menu_item_object_id','5'),(14,5,'_menu_item_object','custom'),(15,5,'_menu_item_target',''),(16,5,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(17,5,'_menu_item_xfn',''),(18,5,'_menu_item_url','/lantern-listings/'),(19,6,'_menu_item_type','custom'),(20,6,'_menu_item_menu_item_parent','0'),(21,6,'_menu_item_object_id','6'),(22,6,'_menu_item_object','custom'),(23,6,'_menu_item_target',''),(24,6,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(25,6,'_menu_item_xfn',''),(26,6,'_menu_item_url','#'),(27,7,'_menu_item_type','custom'),(28,7,'_menu_item_menu_item_parent','6'),(29,7,'_menu_item_object_id','7'),(30,7,'_menu_item_object','custom'),(31,7,'_menu_item_target',''),(32,7,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(33,7,'_menu_item_xfn',''),(34,7,'_menu_item_url','/homes-for-sale-search/'),(665,172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:265;s:4:\"file\";s:47:\"2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-300x114.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-768x291.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1024x388.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-1-e1535144736200-150x57.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1170x629.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:47:\"lantern_3_REV_LOGO-1-e1535144736200-350x133.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:48:\"lantern_3_REV_LOGO-1-e1535144736200-1267x480.jpg\";s:5:\"width\";i:1267;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(664,172,'_wp_attached_file','2018/08/lantern_3_REV_LOGO-1-e1535144769790.jpg'),(1321,373,'fave_agent_position','Licensed Agent'),(1322,373,'fave_agent_company','Lantern Realty and Development'),(1323,373,'fave_agent_mobile','(704) 795-8017'),(744,206,'_menu_item_target',''),(743,206,'_menu_item_object','custom'),(742,206,'_menu_item_object_id','206'),(741,206,'_menu_item_menu_item_parent','6'),(740,206,'_menu_item_type','custom'),(501,150,'_menu_item_target',''),(500,150,'_menu_item_object','custom'),(499,150,'_menu_item_object_id','150'),(498,150,'_menu_item_menu_item_parent','5'),(497,150,'_menu_item_type','custom'),(1320,373,'fave_agent_email','cindy.s.widenhouse@gmail.com'),(1332,378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:528;s:6:\"height\";i:527;s:4:\"file\";s:28:\"2018/11/Courtney_Hedrick.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-528x340.jpg\";s:5:\"width\";i:528;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-528x430.jpg\";s:5:\"width\";i:528;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-350x349.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Courtney_Hedrick-481x480.jpg\";s:5:\"width\";i:481;s:6:\"height\";i:480;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:\"1541171075\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(83,14,'_menu_item_type','custom'),(84,14,'_menu_item_menu_item_parent','156'),(85,14,'_menu_item_object_id','14'),(86,14,'_menu_item_object','custom'),(87,14,'_menu_item_target',''),(88,14,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(89,14,'_menu_item_xfn',''),(90,14,'_menu_item_url','/property-organizer-login/'),(91,15,'_menu_item_type','custom'),(92,15,'_menu_item_menu_item_parent','157'),(93,15,'_menu_item_object_id','15'),(94,15,'_menu_item_object','custom'),(95,15,'_menu_item_target',''),(96,15,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(97,15,'_menu_item_xfn',''),(98,15,'_menu_item_url','/valuation-form/'),(99,16,'_menu_item_type','custom'),(100,16,'_menu_item_menu_item_parent','0'),(101,16,'_menu_item_object_id','16'),(102,16,'_menu_item_object','custom'),(103,16,'_menu_item_target',''),(104,16,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(105,16,'_menu_item_xfn',''),(106,16,'_menu_item_url','/contact-form/'),(111,20,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(112,20,'_mail','a:8:{s:7:\"subject\";s:47:\"Lantern Realty and Development \"[your-subject]\"\";s:6:\"sender\";s:42:\"[your-name] <wordpress@lantern-realty.com>\";s:4:\"body\";s:194:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Lantern Realty and Development (http://lantern-realty.com)\";s:9:\"recipient\";s:20:\"ckeziah127@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(113,20,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:47:\"Lantern Realty and Development \"[your-subject]\"\";s:6:\"sender\";s:61:\"Lantern Realty and Development <wordpress@lantern-realty.com>\";s:4:\"body\";s:136:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Lantern Realty and Development (http://lantern-realty.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:30:\"Reply-To: ckeziah127@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(114,20,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(115,20,'_additional_settings',NULL),(116,20,'_locale','en_US'),(117,21,'_wp_attached_file','2018/08/lantern_3_REV_LOGO-e1534726093274.jpg'),(118,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:114;s:4:\"file\";s:45:\"2018/08/lantern_3_REV_LOGO-e1534726093274.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-300x114.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-768x292.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1024x389.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"lantern_3_REV_LOGO-e1534726071387-150x57.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1170x601.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1440x601.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:45:\"lantern_3_REV_LOGO-e1534726071387-350x133.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:46:\"lantern_3_REV_LOGO-e1534726071387-1263x480.jpg\";s:5:\"width\";i:1263;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(119,21,'_edit_lock','1534726131:1'),(120,21,'_wp_attachment_backup_sizes','a:18:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2229;s:6:\"height\";i:1287;s:4:\"file\";s:22:\"lantern_3_REV_LOGO.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1024x591.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:29:\"lantern_3_REV_LOGO-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-single-big-size-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"houzez-property-thumb-image-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-thumb-image-v2-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image570_340-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-detail-gallery-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"houzez-imageSize1170_738-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-prop_image1440_610-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image350_350-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-widget-prop-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-350x202.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-toparea-v5-orig\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-831x480.jpg\";s:5:\"width\";i:831;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1534726093274\";a:3:{s:5:\"width\";i:1582;s:6:\"height\";i:601;s:4:\"file\";s:37:\"lantern_3_REV_LOGO-e1534726071387.jpg\";}}'),(121,21,'_edit_last','1'),(122,22,'_wp_attached_file','2018/08/Facebook-Logo-e1602979990537.jpg'),(123,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:101;s:4:\"file\";s:40:\"2018/08/Facebook-Logo-e1602979990537.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Facebook-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Facebook-Logo-148x150.jpg\";s:5:\"width\";i:148;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Facebook-Logo-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(136,28,'_wp_attached_file','2018/08/cropped-Facebook-Logo.jpg'),(137,28,'_wp_attachment_context','site-icon'),(138,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:33:\"2018/08/cropped-Facebook-Logo.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-512x340.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-512x430.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:33:\"cropped-Facebook-Logo-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:31:\"cropped-Facebook-Logo-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1326,373,'fave_agent_agencies','45'),(1327,373,'_primary_term_agent_category','4'),(1325,373,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1324,373,'fave_agent_website','lantern-realty.com'),(158,37,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(159,37,'_edit_last','1'),(160,37,'_edit_lock','1602979814:1'),(161,38,'_wp_attached_file','2018/08/deanaAGENT.jpg'),(162,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:889;s:6:\"height\";i:1105;s:4:\"file\";s:22:\"2018/08/deanaAGENT.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-768x955.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:955;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"deanaAGENT-824x1024.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-121x150.jpg\";s:5:\"width\";i:121;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-889x600.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-889x738.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-889x610.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-350x435.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:22:\"deanaAGENT-386x480.jpg\";s:5:\"width\";i:386;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1320494504\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(163,37,'_thumbnail_id','38'),(164,37,'slide_template',''),(166,37,'fave_agent_email','deana327@gmail.com'),(167,37,'fave_agent_position','Owner/Broker'),(168,37,'fave_agent_mobile','(704) 258-8068'),(169,37,'fave_agent_company','Lantern Realty and Development'),(1078,319,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(175,45,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(176,45,'_edit_last','1'),(177,45,'_edit_lock','1650419684:1'),(178,45,'_thumbnail_id','663'),(179,45,'fave_agency_location','25.686540,-80.431345,15'),(180,45,'slide_template',''),(181,2,'_edit_lock','1600617644:1'),(183,2,'_wp_page_template','template/template-homepage.php'),(184,2,'slide_template','default'),(185,2,'_wpb_vc_js_status','true'),(186,2,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(187,2,'fave_default_view','list_view'),(188,2,'fave_properties_sort','d_date'),(189,2,'fave_featured_prop_no','4'),(190,2,'fave_prop_no','9'),(191,2,'fave_listings_tabs','enable'),(192,2,'fave_prop_no_halfmap','9'),(193,2,'fave_properties_sort_halfmap','d_date'),(194,2,'fave_agency_orderby','None'),(195,2,'fave_agency_order','ASC'),(196,2,'fave_agent_orderby','None'),(197,2,'fave_agent_order','ASC'),(198,2,'fave_page_title','show'),(199,2,'fave_page_breadcrumb','show'),(200,2,'fave_page_sidebar','none'),(201,2,'fave_page_background','yes'),(202,2,'fave_header_type','none'),(203,2,'fave_header_full_screen','0'),(204,2,'fave_header_full_screen_type','screen_fix'),(205,2,'fave_page_header_search','0'),(206,2,'fave_page_header_image_opacity','0.5'),(207,2,'fave_page_header_video_overlay','yes'),(208,2,'fave_main_menu_trans','no'),(209,2,'fave_adv_search_enable','global'),(210,2,'fave_adv_search','hide'),(211,2,'fave_adv_search_pos','under_menu'),(212,2,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(213,56,'_wp_attached_file','2018/08/Lantern_OpenHouse.png'),(214,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:728;s:4:\"file\";s:29:\"2018/08/Lantern_OpenHouse.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-300x182.png\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-768x466.png\";s:5:\"width\";i:768;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Lantern_OpenHouse-1024x621.png\";s:5:\"width\";i:1024;s:6:\"height\";i:621;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Lantern_OpenHouse-150x91.png\";s:5:\"width\";i:150;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:30:\"Lantern_OpenHouse-1170x600.png\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-810x430.png\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:30:\"Lantern_OpenHouse-1170x728.png\";s:5:\"width\";i:1170;s:6:\"height\";i:728;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:30:\"Lantern_OpenHouse-1200x610.png\";s:5:\"width\";i:1200;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-350x212.png\";s:5:\"width\";i:350;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:29:\"Lantern_OpenHouse-791x480.png\";s:5:\"width\";i:791;s:6:\"height\";i:480;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:{}}}'),(217,2,'_wpb_shortcodes_custom_css','.vc_custom_1535990071877{padding-top: 10% !important;background-image: url(https://lantern-realty.com/wp-content/uploads/2018/08/Lantern_OpenHouse.png?id=56) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1535223457405{padding-top: 50px !important;}.vc_custom_1534901322962{margin-bottom: 250px !important;padding-right: 20px !important;padding-left: 20px !important;}.vc_custom_1534901068460{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: rgba(255,255,255,0.76) !important;*background-color: rgb(255,255,255) !important;}'),(218,94,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(219,94,'_edit_last','1'),(220,94,'_edit_lock','1535329841:1'),(251,94,'_wp_page_template','template/template-page.php'),(222,94,'slide_template','default'),(223,94,'_wpb_vc_js_status','true'),(224,94,'fave_default_view','list_view'),(225,94,'fave_properties_sort','d_date'),(226,94,'fave_featured_prop_no','4'),(227,94,'fave_prop_no','9'),(228,94,'fave_listings_tabs','enable'),(229,94,'fave_prop_no_halfmap','9'),(230,94,'fave_properties_sort_halfmap','d_date'),(231,94,'fave_agency_orderby','None'),(232,94,'fave_agency_order','ASC'),(233,94,'fave_agent_orderby','None'),(234,94,'fave_agent_order','ASC'),(235,94,'fave_page_title','hide'),(236,94,'fave_page_breadcrumb','show'),(237,94,'fave_page_sidebar','none'),(238,94,'fave_page_background','yes'),(239,94,'fave_header_type','none'),(240,94,'fave_header_full_screen','0'),(241,94,'fave_header_full_screen_type','screen_fix'),(242,94,'fave_page_header_search','0'),(243,94,'fave_page_header_image_opacity','0.5'),(244,94,'fave_page_header_video_overlay','yes'),(245,94,'fave_main_menu_trans','no'),(246,94,'fave_adv_search_enable','global'),(247,94,'fave_adv_search','hide'),(248,94,'fave_adv_search_pos','under_menu'),(249,94,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(252,4,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(253,5,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(254,6,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(255,7,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(739,206,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(496,150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(262,14,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(263,15,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(264,16,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(265,101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4031,868,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3104,744,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3105,744,'_edit_lock','1627858530:1'),(266,101,'_edit_last','1'),(267,101,'_edit_lock','1656030404:1'),(268,101,'_wp_page_template','template/template-page.php'),(269,101,'slide_template','default'),(270,101,'_wpb_vc_js_status','true'),(271,101,'fave_default_view','list_view'),(272,101,'fave_properties_sort','d_date'),(273,101,'fave_featured_prop_no','4'),(274,101,'fave_prop_no','9'),(275,101,'fave_listings_tabs','enable'),(276,101,'fave_prop_no_halfmap','9'),(277,101,'fave_properties_sort_halfmap','d_date'),(278,101,'fave_agency_orderby','None'),(279,101,'fave_agency_order','ASC'),(280,101,'fave_agent_orderby','title'),(281,101,'fave_agent_order','ASC'),(282,101,'fave_page_title','hide'),(283,101,'fave_page_breadcrumb','show'),(284,101,'fave_page_sidebar','none'),(285,101,'fave_page_background','yes'),(286,101,'fave_header_type','none'),(287,101,'fave_header_full_screen','0'),(288,101,'fave_header_full_screen_type','screen_fix'),(289,101,'fave_page_header_search','0'),(290,101,'fave_page_header_image_opacity','0.5'),(291,101,'fave_page_header_video_overlay','yes'),(292,101,'fave_main_menu_trans','no'),(293,101,'fave_adv_search_enable','global'),(294,101,'fave_adv_search','hide'),(295,101,'fave_adv_search_pos','under_menu'),(296,101,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(297,105,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(298,105,'_edit_last','1'),(299,105,'_edit_lock','1600547561:1'),(300,106,'_wp_attached_file','2018/08/Paula_Severt_1.jpg'),(301,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:405;s:4:\"file\";s:26:\"2018/08/Paula_Severt_1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-150x135.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-450x340.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Paula_Severt_1-350x315.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(302,105,'_thumbnail_id','106'),(303,105,'slide_template',''),(3081,105,'_primary_term_agent_category','3'),(3082,105,'rs_page_bg_color',''),(315,111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(316,111,'_edit_last','1'),(317,111,'_edit_lock','1645148519:1'),(318,112,'_wp_attached_file','2018/08/Annie_Boger.jpg'),(319,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2018/08/Annie_Boger.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-960x600.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-960x738.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-960x610.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Annie_Boger-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;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:{}}}'),(305,105,'fave_agent_email','paulasevert@yahoo.com'),(306,105,'fave_agent_position','Owner/Broker'),(307,105,'fave_agent_company','Lantern Realty and Development'),(308,105,'fave_agent_mobile','704-232-3433'),(309,105,'fave_agent_website','lantern-realty.com'),(310,105,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3233,105,'fave_agent_logo','22'),(312,105,'fave_agent_agencies','45'),(320,111,'_thumbnail_id','112'),(11955,2269,'_wp_attached_file','2021/02/Katherine_Lawing-1.jpg'),(3084,111,'_primary_term_agent_category','4'),(3085,111,'rs_page_bg_color',''),(323,111,'fave_agent_email','Annie.homes4u@gmail.com'),(324,111,'fave_agent_position','Licensed Agent'),(325,111,'fave_agent_company','Lantern Realty and Development'),(326,111,'fave_agent_mobile','980-521-3988'),(327,111,'fave_agent_website','lantern-realty.com'),(328,111,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11954,111,'fave_agent_logo','22'),(330,111,'fave_agent_agencies','45'),(332,114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(333,114,'_edit_last','1'),(334,114,'_edit_lock','1600547556:1'),(361,120,'_edit_last','1'),(362,120,'_edit_lock','1600544608:1'),(363,121,'_wp_attached_file','2018/08/Krysta_Kemp.jpg'),(364,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1054;s:6:\"height\";i:1188;s:4:\"file\";s:23:\"2018/08/Krysta_Kemp.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-266x300.jpg\";s:5:\"width\";i:266;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-768x866.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:866;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Krysta_Kemp-908x1024.jpg\";s:5:\"width\";i:908;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-133x150.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Krysta_Kemp-1054x600.jpg\";s:5:\"width\";i:1054;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Krysta_Kemp-1054x738.jpg\";s:5:\"width\";i:1054;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Krysta_Kemp-1054x610.jpg\";s:5:\"width\";i:1054;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-350x394.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Krysta_Kemp-426x480.jpg\";s:5:\"width\";i:426;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:10:\"John Stamp\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1503162906\";s:9:\"copyright\";s:17:\"studiothirty5.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(360,120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(358,114,'_thumbnail_id','119'),(338,114,'slide_template',''),(3078,114,'_primary_term_agent_category','3'),(3079,114,'rs_page_bg_color',''),(340,114,'fave_agent_email','ch2realty@gmail.com'),(341,114,'fave_agent_position','Owner/Broker'),(342,114,'fave_agent_company','Lantern Realty and Development'),(343,114,'fave_agent_mobile','704-298-5872'),(344,114,'fave_agent_website','lantern-realty.com'),(345,114,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3232,114,'fave_agent_logo','28'),(347,114,'fave_agent_agencies','45'),(356,119,'_wp_attached_file','2018/08/Chris-Puckett.jpg'),(357,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:287;s:6:\"height\";i:283;s:4:\"file\";s:25:\"2018/08/Chris-Puckett.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-287x258.jpg\";s:5:\"width\";i:287;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-287x280.jpg\";s:5:\"width\";i:287;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Chris-Puckett-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510750305\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(365,120,'_thumbnail_id','121'),(366,120,'slide_template',''),(3087,120,'_primary_term_agent_category','6'),(3088,120,'rs_page_bg_color',''),(368,120,'fave_agent_email','krystakemprealty@gmail.com'),(369,120,'fave_agent_position','Licensed Agent'),(370,120,'fave_agent_company','Lantern Realty and Development'),(371,120,'fave_agent_mobile','704-701-7334'),(372,120,'fave_agent_website','lantern-realty.com'),(373,120,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3366,120,'fave_agent_logo','22'),(375,120,'fave_agent_agencies','45'),(376,123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(377,123,'_edit_last','1'),(378,123,'_edit_lock','1600543141:1'),(379,124,'_wp_attached_file','2018/08/Woody_Brown.jpg'),(380,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:839;s:6:\"height\";i:799;s:4:\"file\";s:23:\"2018/08/Woody_Brown.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-768x731.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:731;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-150x143.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-839x600.jpg\";s:5:\"width\";i:839;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-839x738.jpg\";s:5:\"width\";i:839;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-839x610.jpg\";s:5:\"width\";i:839;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-350x333.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Woody_Brown-504x480.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(381,123,'_thumbnail_id','124'),(382,123,'slide_template',''),(383,123,'fave_agent_position','Licensed Agent'),(384,123,'fave_agent_website','lantern-realty.com'),(385,123,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3257,123,'fave_agent_logo','22'),(387,123,'fave_agent_agencies','45'),(388,123,'fave_agent_company','Lantern Realty and Development'),(389,126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(390,126,'_edit_last','1'),(391,126,'_edit_lock','1600543121:1'),(392,127,'_wp_attached_file','2018/08/Elizabeth_Brown.jpg'),(393,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:696;s:6:\"height\";i:709;s:4:\"file\";s:27:\"2018/08/Elizabeth_Brown.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-294x300.jpg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-147x150.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-696x600.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-696x430.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-696x610.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-350x357.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Elizabeth_Brown-471x480.jpg\";s:5:\"width\";i:471;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(394,126,'_thumbnail_id','127'),(395,126,'slide_template',''),(396,126,'fave_agent_position','Licensed Agent'),(397,126,'fave_agent_company','Lantern Realty and Development'),(398,126,'fave_agent_website','lantern-realty.com'),(399,126,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3252,126,'fave_agent_logo','22'),(401,126,'fave_agent_agencies','45'),(402,129,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(403,129,'_edit_last','1'),(404,129,'_edit_lock','1573841258:1'),(405,130,'_wp_attached_file','2018/08/Jennifer_Wood.jpg'),(406,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:583;s:6:\"height\";i:621;s:4:\"file\";s:25:\"2018/08/Jennifer_Wood.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-282x300.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-141x150.jpg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-583x600.jpg\";s:5:\"width\";i:583;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-583x430.jpg\";s:5:\"width\";i:583;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-583x610.jpg\";s:5:\"width\";i:583;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-350x373.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Jennifer_Wood-451x480.jpg\";s:5:\"width\";i:451;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(407,129,'_thumbnail_id','130'),(408,129,'slide_template',''),(409,129,'fave_agent_position','Licensed Agent'),(410,129,'fave_agent_company','Lantern Realty and Development'),(411,129,'fave_agent_website','lantern-realty.com'),(412,129,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1450,129,'fave_agent_logo','22'),(414,129,'fave_agent_agencies','45'),(415,132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(416,132,'_edit_last','1'),(417,132,'_edit_lock','1573841439:1'),(418,133,'_wp_attached_file','2018/08/Grant-Stevens.jpg'),(419,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:731;s:6:\"height\";i:761;s:4:\"file\";s:25:\"2018/08/Grant-Stevens.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-288x300.jpg\";s:5:\"width\";i:288;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-144x150.jpg\";s:5:\"width\";i:144;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-731x600.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-731x430.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-731x738.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-731x610.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-350x364.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Grant-Stevens-461x480.jpg\";s:5:\"width\";i:461;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(420,132,'_thumbnail_id','133'),(421,132,'slide_template',''),(422,132,'fave_agent_position','Licensed Agent'),(423,132,'fave_agent_company','Lantern Realty and Development'),(424,132,'fave_agent_website','lantern-realty.com'),(425,132,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1278,132,'fave_agent_logo','22'),(427,132,'fave_agent_agencies','45'),(428,135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(429,136,'_wp_attached_file','2018/08/Amy-Evans.jpg'),(430,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:672;s:6:\"height\";i:777;s:4:\"file\";s:21:\"2018/08/Amy-Evans.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-130x150.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-672x600.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-672x430.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-672x738.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-672x610.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-350x405.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:21:\"Amy-Evans-415x480.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(431,135,'_edit_last','1'),(432,135,'_thumbnail_id','136'),(433,135,'slide_template',''),(434,135,'fave_agent_position','Licensed Agent'),(435,135,'fave_agent_company','Lantern Realty and Development'),(436,135,'fave_agent_website','lantern-realty.com'),(437,135,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3280,135,'fave_agent_logo','22'),(439,135,'fave_agent_agencies','45'),(440,135,'_edit_lock','1600543534:1'),(441,138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(442,138,'_edit_last','1'),(443,138,'_edit_lock','1573841419:1'),(444,139,'_wp_attached_file','2018/08/Kyle_Runyon.jpg'),(445,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:660;s:6:\"height\";i:735;s:4:\"file\";s:23:\"2018/08/Kyle_Runyon.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-660x600.jpg\";s:5:\"width\";i:660;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-660x430.jpg\";s:5:\"width\";i:660;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-660x610.jpg\";s:5:\"width\";i:660;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-350x390.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Kyle_Runyon-431x480.jpg\";s:5:\"width\";i:431;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(446,138,'_thumbnail_id','139'),(447,138,'slide_template',''),(448,138,'fave_agent_position','Licensed Agent'),(449,138,'fave_agent_company','Lantern Realty and Development'),(450,138,'fave_agent_website','lantern-realty.com'),(451,138,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1453,138,'fave_agent_logo','22'),(453,138,'fave_agent_agencies','45'),(454,141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(455,141,'_edit_last','1'),(456,141,'_edit_lock','1600546274:1'),(457,142,'_wp_attached_file','2018/08/Ethan_Stillinger.jpg'),(458,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:663;s:6:\"height\";i:703;s:4:\"file\";s:28:\"2018/08/Ethan_Stillinger.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-283x300.jpg\";s:5:\"width\";i:283;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-141x150.jpg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-663x600.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-663x430.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-663x610.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-350x371.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Ethan_Stillinger-453x480.jpg\";s:5:\"width\";i:453;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(459,141,'_thumbnail_id','142'),(460,141,'slide_template',''),(461,141,'fave_agent_position','Licensed Agent'),(462,141,'fave_agent_company','Lantern Realty and Development'),(463,141,'fave_agent_website','lantern-realty.com'),(464,141,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3382,141,'fave_agent_logo','22'),(466,141,'fave_agent_agencies','45'),(467,144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(468,144,'_edit_last','1'),(469,144,'_edit_lock','1588015483:1'),(470,145,'_wp_attached_file','2018/08/Wesley_Cook.jpg'),(471,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:499;s:6:\"height\";i:556;s:4:\"file\";s:23:\"2018/08/Wesley_Cook.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-499x340.jpg\";s:5:\"width\";i:499;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-499x430.jpg\";s:5:\"width\";i:499;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-350x390.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Wesley_Cook-431x480.jpg\";s:5:\"width\";i:431;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(472,144,'_thumbnail_id','145'),(473,144,'slide_template',''),(474,144,'fave_agent_position','Licensed Agent'),(475,144,'fave_agent_company','Lantern Realty and Development'),(476,144,'fave_agent_website','lantern-realty.com'),(477,144,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1296,144,'fave_agent_logo','22'),(479,144,'fave_agent_agencies','45'),(480,37,'fave_agent_website','lantern-realty.com'),(481,37,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(5736,37,'fave_agent_logo','1129'),(483,37,'fave_agent_agencies','45'),(486,149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(487,149,'_menu_item_type','post_type'),(488,149,'_menu_item_menu_item_parent','0'),(489,149,'_menu_item_object_id','101'),(490,149,'_menu_item_object','page'),(491,149,'_menu_item_target',''),(492,149,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(493,149,'_menu_item_xfn',''),(494,149,'_menu_item_url',''),(502,150,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(503,150,'_menu_item_xfn',''),(504,150,'_menu_item_url','/lantern-listings/'),(506,151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(507,151,'_menu_item_type','custom'),(508,151,'_menu_item_menu_item_parent','5'),(509,151,'_menu_item_object_id','151'),(510,151,'_menu_item_object','custom'),(511,151,'_menu_item_target',''),(512,151,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(513,151,'_menu_item_xfn',''),(514,151,'_menu_item_url','/recently-sold/'),(516,152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(517,152,'_edit_last','1'),(518,152,'_edit_lock','1535988850:1'),(519,152,'_wp_page_template','template/template-page.php'),(520,152,'slide_template','default'),(521,152,'_wpb_vc_js_status','true'),(522,152,'fave_default_view','list_view'),(523,152,'fave_properties_sort','d_date'),(524,152,'fave_featured_prop_no','4'),(525,152,'fave_prop_no','9'),(526,152,'fave_listings_tabs','enable'),(527,152,'fave_prop_no_halfmap','9'),(528,152,'fave_properties_sort_halfmap','d_date'),(529,152,'fave_agency_orderby','None'),(530,152,'fave_agency_order','ASC'),(531,152,'fave_agent_orderby','None'),(532,152,'fave_agent_order','ASC'),(533,152,'fave_page_title','show'),(534,152,'fave_page_breadcrumb','show'),(535,152,'fave_page_sidebar','none'),(536,152,'fave_page_background','yes'),(537,152,'fave_header_type','none'),(538,152,'fave_header_full_screen','0'),(539,152,'fave_header_full_screen_type','screen_fix'),(540,152,'fave_page_header_search','0'),(541,152,'fave_page_header_image_opacity','0.5'),(542,152,'fave_page_header_video_overlay','yes'),(543,152,'fave_main_menu_trans','no'),(544,152,'fave_adv_search_enable','global'),(545,152,'fave_adv_search','hide'),(546,152,'fave_adv_search_pos','under_menu'),(547,152,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(548,156,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(549,156,'_menu_item_type','custom'),(550,156,'_menu_item_menu_item_parent','0'),(551,156,'_menu_item_object_id','156'),(552,156,'_menu_item_object','custom'),(553,156,'_menu_item_target',''),(554,156,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(555,156,'_menu_item_xfn',''),(556,156,'_menu_item_url','#'),(558,157,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(559,157,'_menu_item_type','custom'),(560,157,'_menu_item_menu_item_parent','0'),(561,157,'_menu_item_object_id','157'),(562,157,'_menu_item_object','custom'),(563,157,'_menu_item_target',''),(564,157,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(565,157,'_menu_item_xfn',''),(566,157,'_menu_item_url','#'),(1328,377,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1329,377,'_edit_last','1'),(1330,377,'_edit_lock','1613657645:1'),(1331,378,'_wp_attached_file','2018/11/Courtney_Hedrick.jpg'),(1318,373,'slide_template',''),(1317,373,'_thumbnail_id','374'),(636,166,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(637,166,'_menu_item_type','custom'),(638,166,'_menu_item_menu_item_parent','156'),(639,166,'_menu_item_object_id','166'),(640,166,'_menu_item_object','custom'),(641,166,'_menu_item_target',''),(642,166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(643,166,'_menu_item_xfn',''),(644,166,'_menu_item_url','/property-organizer-view-saved-search-list/'),(646,167,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(647,167,'_menu_item_type','custom'),(648,167,'_menu_item_menu_item_parent','156'),(649,167,'_menu_item_object_id','167'),(650,167,'_menu_item_object','custom'),(651,167,'_menu_item_target',''),(652,167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(653,167,'_menu_item_xfn',''),(654,167,'_menu_item_url','/property-organizer-saved-listings/'),(666,172,'_edit_lock','1535144889:1'),(667,172,'_wp_attachment_backup_sizes','a:18:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2229;s:6:\"height\";i:1287;s:4:\"file\";s:24:\"lantern_3_REV_LOGO-1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:33:\"lantern_3_REV_LOGO-1-1024x591.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-single-big-size-orig\";a:4:{s:4:\"file\";s:33:\"lantern_3_REV_LOGO-1-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"houzez-property-thumb-image-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-thumb-image-v2-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image570_340-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-detail-gallery-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"houzez-imageSize1170_738-orig\";a:4:{s:4:\"file\";s:33:\"lantern_3_REV_LOGO-1-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-prop_image1440_610-orig\";a:4:{s:4:\"file\";s:33:\"lantern_3_REV_LOGO-1-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image350_350-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-widget-prop-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-350x202.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-toparea-v5-orig\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-1-831x480.jpg\";s:5:\"width\";i:831;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1535144769790\";a:3:{s:5:\"width\";i:1660;s:6:\"height\";i:629;s:4:\"file\";s:39:\"lantern_3_REV_LOGO-1-e1535144736200.jpg\";}}'),(668,172,'_edit_last','1'),(669,186,'_wp_attached_file','2018/08/team1.jpg'),(670,186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:638;s:6:\"height\";i:588;s:4:\"file\";s:17:\"2018/08/team1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team1-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-150x138.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team1-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team1-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team1-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team1-638x430.jpg\";s:5:\"width\";i:638;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team1-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team1-350x323.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team1-521x480.jpg\";s:5:\"width\";i:521;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(671,187,'_wp_attached_file','2018/08/team2.jpg'),(672,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:827;s:4:\"file\";s:17:\"2018/08/team2.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team2-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:17:\"team2-639x600.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team2-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team2-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team2-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team2-639x430.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:17:\"team2-639x738.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:17:\"team2-639x610.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team2-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team2-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team2-350x453.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team2-371x480.jpg\";s:5:\"width\";i:371;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(673,188,'_wp_attached_file','2018/08/team3.jpg'),(674,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:498;s:6:\"height\";i:372;s:4:\"file\";s:17:\"2018/08/team3.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team3-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team3-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team3-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team3-498x340.jpg\";s:5:\"width\";i:498;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team3-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team3-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team3-350x261.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:261;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(675,192,'_wp_attached_file','2018/08/team4-e1536104869162.jpg'),(676,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1184;s:6:\"height\";i:332;s:4:\"file\";s:32:\"2018/08/team4-e1536104869162.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"team4-e1536104869162-300x84.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-768x215.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"team4-e1536104869162-1024x287.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"team4-e1536104869162-150x42.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:42;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:33:\"team4-e1536104869162-1170x332.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-570x332.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-810x332.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:33:\"team4-e1536104869162-1170x332.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:18:\"team4-1280x610.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-350x332.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:32:\"team4-e1536104869162-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"team4-e1536104869162-350x98.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team4-640x480.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:480;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:{}}}'),(677,193,'_wp_attached_file','2018/08/team5.jpg'),(678,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:17:\"2018/08/team5.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team5-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team5-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:17:\"team5-720x600.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team5-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team5-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team5-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team5-720x430.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:17:\"team5-720x738.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:17:\"team5-720x610.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team5-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team5-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team5-350x467.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team5-360x480.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:480;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:{}}}'),(679,194,'_wp_attached_file','2018/08/team6.jpg'),(680,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:714;s:6:\"height\";i:960;s:4:\"file\";s:17:\"2018/08/team6.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team6-223x300.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-112x150.jpg\";s:5:\"width\";i:112;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:17:\"team6-714x600.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team6-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team6-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team6-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team6-714x430.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:17:\"team6-714x738.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:17:\"team6-714x610.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team6-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team6-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team6-350x471.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team6-357x480.jpg\";s:5:\"width\";i:357;s:6:\"height\";i:480;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:{}}}'),(681,195,'_wp_attached_file','2018/08/team7.jpg'),(682,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:718;s:6:\"height\";i:496;s:4:\"file\";s:17:\"2018/08/team7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team7-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-150x104.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team7-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team7-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team7-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:17:\"team7-718x430.jpg\";s:5:\"width\";i:718;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team7-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team7-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team7-350x242.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:17:\"team7-695x480.jpg\";s:5:\"width\";i:695;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(683,196,'_wp_attached_file','2018/08/team8.jpg'),(684,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:608;s:6:\"height\";i:418;s:4:\"file\";s:17:\"2018/08/team8.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team8-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-150x103.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:17:\"team8-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:17:\"team8-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:17:\"team8-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:17:\"team8-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:17:\"team8-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"team8-350x241.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(756,207,'_menu_item_xfn',''),(755,207,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(754,207,'_menu_item_target',''),(753,207,'_menu_item_object','custom'),(752,207,'_menu_item_object_id','207'),(751,207,'_menu_item_menu_item_parent','206'),(750,207,'_menu_item_type','custom'),(749,207,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(803,212,'_menu_item_object','custom'),(804,212,'_menu_item_target',''),(747,206,'_menu_item_url','#'),(746,206,'_menu_item_xfn',''),(745,206,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1316,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:640;s:4:\"file\";s:28:\"2018/11/Cindy_Widenhouse.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-639x600.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-639x430.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-639x610.jpg\";s:5:\"width\";i:639;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-350x351.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Cindy_Widenhouse-479x480.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:480;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:\"1541171102\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1315,374,'_wp_attached_file','2018/11/Cindy_Widenhouse.jpg'),(1314,373,'_edit_lock','1613657684:1'),(1313,373,'_edit_last','1'),(1312,373,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1311,370,'_thumbnail_id','372'),(757,207,'_menu_item_url','/listing-report/Charlotte/815191'),(799,212,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(759,208,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(760,208,'_menu_item_type','custom'),(761,208,'_menu_item_menu_item_parent','206'),(762,208,'_menu_item_object_id','208'),(763,208,'_menu_item_object','custom'),(764,208,'_menu_item_target',''),(765,208,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(766,208,'_menu_item_xfn',''),(767,208,'_menu_item_url','/listing-report/Kannapolis-Concord/815186'),(802,212,'_menu_item_object_id','212'),(769,209,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(770,209,'_menu_item_type','custom'),(771,209,'_menu_item_menu_item_parent','206'),(772,209,'_menu_item_object_id','209'),(773,209,'_menu_item_object','custom'),(774,209,'_menu_item_target',''),(775,209,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(776,209,'_menu_item_xfn',''),(777,209,'_menu_item_url','/listing-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187'),(779,210,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(780,210,'_menu_item_type','custom'),(781,210,'_menu_item_menu_item_parent','206'),(782,210,'_menu_item_object_id','210'),(783,210,'_menu_item_object','custom'),(784,210,'_menu_item_target',''),(785,210,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(786,210,'_menu_item_xfn',''),(787,210,'_menu_item_url','/listing-report/Rockwell-Granite-Quarry-Gold-Hill/815189'),(800,212,'_menu_item_type','custom'),(789,211,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(790,211,'_menu_item_type','custom'),(791,211,'_menu_item_menu_item_parent','206'),(792,211,'_menu_item_object_id','211'),(793,211,'_menu_item_object','custom'),(794,211,'_menu_item_target',''),(795,211,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(796,211,'_menu_item_xfn',''),(797,211,'_menu_item_url','/listing-report/Salisbury/81519'),(801,212,'_menu_item_menu_item_parent','157'),(805,212,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(806,212,'_menu_item_xfn',''),(807,212,'_menu_item_url','#'),(809,213,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(810,213,'_menu_item_type','custom'),(811,213,'_menu_item_menu_item_parent','212'),(812,213,'_menu_item_object_id','213'),(813,213,'_menu_item_object','custom'),(814,213,'_menu_item_target',''),(815,213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(816,213,'_menu_item_xfn',''),(817,213,'_menu_item_url','/market-report/Charlotte/815191'),(819,214,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(820,214,'_menu_item_type','custom'),(821,214,'_menu_item_menu_item_parent','212'),(822,214,'_menu_item_object_id','214'),(823,214,'_menu_item_object','custom'),(824,214,'_menu_item_target',''),(825,214,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(826,214,'_menu_item_xfn',''),(827,214,'_menu_item_url','/market-report/Kannapolis-Concord/815186'),(829,215,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(830,215,'_menu_item_type','custom'),(831,215,'_menu_item_menu_item_parent','212'),(832,215,'_menu_item_object_id','215'),(833,215,'_menu_item_object','custom'),(834,215,'_menu_item_target',''),(835,215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(836,215,'_menu_item_xfn',''),(837,215,'_menu_item_url','/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187'),(839,216,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(840,216,'_menu_item_type','custom'),(841,216,'_menu_item_menu_item_parent','212'),(842,216,'_menu_item_object_id','216'),(843,216,'_menu_item_object','custom'),(844,216,'_menu_item_target',''),(845,216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(846,216,'_menu_item_xfn',''),(847,216,'_menu_item_url','/market-report/Landis-China-Grove/815188'),(849,217,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(850,217,'_menu_item_type','custom'),(851,217,'_menu_item_menu_item_parent','212'),(852,217,'_menu_item_object_id','217'),(853,217,'_menu_item_object','custom'),(854,217,'_menu_item_target',''),(855,217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(856,217,'_menu_item_xfn',''),(857,217,'_menu_item_url','/market-report/Rockwell-Granite-Quarry-Gold-Hill/815189'),(859,218,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(860,218,'_menu_item_type','custom'),(861,218,'_menu_item_menu_item_parent','212'),(862,218,'_menu_item_object_id','218'),(863,218,'_menu_item_object','custom'),(864,218,'_menu_item_target',''),(865,218,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(866,218,'_menu_item_xfn',''),(867,218,'_menu_item_url','/market-report/Salisbury/815190'),(878,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(879,237,'_edit_last','1'),(880,237,'_edit_lock','1602516597:1'),(914,237,'_wp_page_template','template/template-page.php'),(882,237,'slide_template','default'),(883,237,'_wpb_vc_js_status','true'),(884,237,'fave_default_view','list_view'),(885,237,'fave_properties_sort','d_date'),(886,237,'fave_featured_prop_no','4'),(887,237,'fave_prop_no','9'),(888,237,'fave_listings_tabs','enable'),(889,237,'fave_prop_no_halfmap','9'),(890,237,'fave_properties_sort_halfmap','d_date'),(891,237,'fave_agency_orderby','None'),(892,237,'fave_agency_order','ASC'),(893,237,'fave_agent_orderby','None'),(894,237,'fave_agent_order','ASC'),(895,237,'fave_page_title','show'),(896,237,'fave_page_breadcrumb','show'),(897,237,'fave_page_sidebar','right_sidebar'),(898,237,'fave_page_background','yes'),(899,237,'fave_header_type','none'),(900,237,'fave_header_full_screen','0'),(901,237,'fave_header_full_screen_type','screen_fix'),(902,237,'fave_page_header_search','0'),(903,237,'fave_page_header_image_opacity','0.5'),(904,237,'fave_page_header_video_overlay','yes'),(905,237,'fave_main_menu_trans','no'),(906,237,'fave_adv_search_enable','global'),(907,237,'fave_adv_search','hide'),(908,237,'fave_adv_search_pos','under_menu'),(909,237,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(915,247,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(916,247,'_menu_item_type','post_type'),(917,247,'_menu_item_menu_item_parent','156'),(918,247,'_menu_item_object_id','237'),(919,247,'_menu_item_object','page'),(920,247,'_menu_item_target',''),(921,247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(922,247,'_menu_item_xfn',''),(923,247,'_menu_item_url',''),(925,248,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(926,248,'_edit_last','1'),(927,248,'_edit_lock','1535211595:1'),(928,248,'slide_template','default'),(929,248,'fave_testi_text','Deana did an awesome job selling my home for me. She will do a great job for you too!'),(930,248,'fave_testi_name','Diane C.'),(931,253,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(932,253,'_edit_last','1'),(933,253,'_edit_lock','1535211665:1'),(934,253,'slide_template','default'),(935,253,'fave_testi_text','Paula did a wonderful job leading us through our first home purchase and she was on top of it and helped us understand things along the way thank you so much and we highly recommend her.'),(936,253,'fave_testi_name','Joyce L.'),(937,255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(938,255,'_edit_last','1'),(939,255,'_edit_lock','1535211759:1'),(940,255,'slide_template','default'),(941,255,'fave_testi_text','Deana was awesome, she went above and beyond for my wife and I in our search for a new home. I would recommend Deana and the Lantern Team to help with the purchase or sale of any home.'),(968,276,'_wp_attached_file','2018/08/5stars-e1535212336146.png'),(969,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:61;s:4:\"file\";s:33:\"2018/08/5stars-e1535212336146.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"5stars-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"5stars-300x61.png\";s:5:\"width\";i:300;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"5stars-768x155.png\";s:5:\"width\";i:768;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"5stars-1024x207.png\";s:5:\"width\";i:1024;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"5stars-150x30.png\";s:5:\"width\";i:150;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:19:\"5stars-1170x287.png\";s:5:\"width\";i:1170;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:18:\"5stars-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:18:\"5stars-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:18:\"5stars-570x287.png\";s:5:\"width\";i:570;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:18:\"5stars-810x287.png\";s:5:\"width\";i:810;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:19:\"5stars-1170x287.png\";s:5:\"width\";i:1170;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:18:\"5stars-350x287.png\";s:5:\"width\";i:350;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:18:\"5stars-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:17:\"5stars-350x71.png\";s:5:\"width\";i:350;s:6:\"height\";i:71;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:{}}}'),(942,255,'fave_testi_name','Lee D.'),(943,257,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(944,257,'_edit_last','1'),(945,257,'_edit_lock','1588344005:1'),(946,257,'slide_template','default'),(947,257,'fave_testi_text','Paula Severt has successfully guided me through finding a home and selling a home. She has the background and the \"contacts\" to make this a seamless experience. I could not have had a better realtor.'),(948,257,'fave_testi_name','Candy H.'),(949,259,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(950,259,'_edit_last','1'),(951,259,'_edit_lock','1535211635:1'),(952,259,'slide_template','default'),(953,259,'fave_testi_text','Paula is an amazing realtor! We have bought and sold houses with Paula. She goes out of her way to make sure you find the perfect house! Couldn’t recommend her more!!!'),(954,259,'fave_testi_name','Jessica P.'),(955,261,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(956,261,'_edit_last','1'),(957,261,'_edit_lock','1535211645:1'),(958,261,'slide_template','default'),(959,261,'fave_testi_text','Great agent and the best thing you can say about a real estate person is that she is as honest as the day is long!!!!'),(960,261,'fave_testi_name','Joe K.'),(961,263,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(962,263,'_edit_last','1'),(963,263,'_edit_lock','1590781289:1'),(964,263,'slide_template','default'),(965,263,'fave_testi_text','Chris Puckett is the man! Knowledgeable and trustworthy. Highly recommend!'),(966,263,'fave_testi_name','Jeremy A.'),(1106,325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(970,276,'_edit_lock','1535212351:1'),(971,276,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1422;s:6:\"height\";i:287;s:4:\"file\";s:10:\"5stars.png\";}}'),(972,276,'_edit_last','1'),(1310,372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:599;s:6:\"height\";i:599;s:4:\"file\";s:27:\"2018/11/Jeremy_Aldridge.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-599x430.jpg\";s:5:\"width\";i:599;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Jeremy_Aldridge-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;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:\"1541172189\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1309,372,'_wp_attached_file','2018/11/Jeremy_Aldridge.jpg'),(1307,370,'fave_agent_agencies','45'),(1308,370,'_primary_term_agent_category','4'),(1306,370,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1305,370,'fave_agent_website','lantern-realty.com'),(1304,370,'fave_agent_company','Lantern Realty and Development'),(1301,370,'_edit_lock','1600542776:1'),(1302,370,'slide_template',''),(1303,370,'fave_agent_position','Licensed Agent'),(1299,370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1300,370,'_edit_last','1'),(1424,377,'fave_agent_email','hedrickhomes@gmail.com'),(1389,390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(999,303,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1000,303,'_menu_item_type','post_type'),(1001,303,'_menu_item_menu_item_parent','0'),(1002,303,'_menu_item_object_id','237'),(1003,303,'_menu_item_object','page'),(1004,303,'_menu_item_target',''),(1005,303,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1006,303,'_menu_item_xfn',''),(1007,303,'_menu_item_url',''),(1039,3,'_edit_lock','1535226379:1'),(1009,304,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1010,304,'_menu_item_type','post_type'),(1011,304,'_menu_item_menu_item_parent','0'),(1012,304,'_menu_item_object_id','2'),(1013,304,'_menu_item_object','page'),(1014,304,'_menu_item_target',''),(1015,304,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1016,304,'_menu_item_xfn',''),(1017,304,'_menu_item_url',''),(1043,3,'_wpb_vc_js_status','false'),(1019,305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1020,305,'_menu_item_type','custom'),(1021,305,'_menu_item_menu_item_parent','0'),(1022,305,'_menu_item_object_id','305'),(1023,305,'_menu_item_object','custom'),(1024,305,'_menu_item_target',''),(1025,305,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1026,305,'_menu_item_xfn',''),(1027,305,'_menu_item_url','/homes-for-sale-search/'),(1042,3,'slide_template','default'),(1029,306,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1030,306,'_menu_item_type','post_type'),(1031,306,'_menu_item_menu_item_parent','0'),(1032,306,'_menu_item_object_id','94'),(1033,306,'_menu_item_object','page'),(1034,306,'_menu_item_target',''),(1035,306,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1036,306,'_menu_item_xfn',''),(1037,306,'_menu_item_url',''),(1044,3,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1045,3,'fave_default_view','list_view'),(1046,3,'fave_properties_sort','d_date'),(1047,3,'fave_featured_prop_no','4'),(1048,3,'fave_prop_no','9'),(1049,3,'fave_listings_tabs','enable'),(1050,3,'fave_prop_no_halfmap','9'),(1051,3,'fave_properties_sort_halfmap','d_date'),(1052,3,'fave_agency_orderby','None'),(1053,3,'fave_agency_order','ASC'),(1054,3,'fave_agent_orderby','None'),(1055,3,'fave_agent_order','ASC'),(1056,3,'fave_page_title','show'),(1057,3,'fave_page_breadcrumb','show'),(1058,3,'fave_page_sidebar','right_sidebar'),(1059,3,'fave_page_background','yes'),(1060,3,'fave_header_type','none'),(1061,3,'fave_header_full_screen','0'),(1062,3,'fave_header_full_screen_type','screen_fix'),(1063,3,'fave_page_header_search','0'),(1064,3,'fave_page_header_image_opacity','0.5'),(1065,3,'fave_page_header_video_overlay','yes'),(1066,3,'fave_main_menu_trans','no'),(1067,3,'fave_adv_search_enable','global'),(1068,3,'fave_adv_search','hide'),(1069,3,'fave_adv_search_pos','under_menu'),(1070,3,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(1073,316,'_wp_attached_file','2018/08/HomeValue-01.png'),(1074,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:233;s:6:\"height\";i:220;s:4:\"file\";s:24:\"2018/08/HomeValue-01.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"HomeValue-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"HomeValue-01-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"HomeValue-01-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;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:{}}}'),(1075,317,'_wp_attached_file','2018/08/HomeValue-02-01.png'),(1076,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:665;s:6:\"height\";i:149;s:4:\"file\";s:27:\"2018/08/HomeValue-02-01.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-150x149.png\";s:5:\"width\";i:150;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"HomeValue-02-01-300x67.png\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"HomeValue-02-01-150x34.png\";s:5:\"width\";i:150;s:6:\"height\";i:34;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-385x149.png\";s:5:\"width\";i:385;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-380x149.png\";s:5:\"width\";i:380;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-570x149.png\";s:5:\"width\";i:570;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-350x149.png\";s:5:\"width\";i:350;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"HomeValue-02-01-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"HomeValue-02-01-350x78.png\";s:5:\"width\";i:350;s:6:\"height\";i:78;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:{}}}'),(1079,319,'_edit_last','1'),(1080,319,'_edit_lock','1573841213:1'),(1081,320,'_wp_attached_file','2018/09/Wanda_Prince.jpg'),(1082,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:674;s:6:\"height\";i:721;s:4:\"file\";s:24:\"2018/09/Wanda_Prince.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-140x150.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-674x600.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-674x430.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-674x610.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-350x374.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Wanda_Prince-449x480.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1083,319,'_thumbnail_id','320'),(1084,319,'slide_template',''),(1085,319,'fave_agent_position','Licensed Agent'),(1086,319,'fave_agent_company','Lantern Realty and Development'),(1087,319,'fave_agent_website','lantern-realty.com'),(1088,319,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1271,319,'fave_agent_logo','22'),(1090,319,'fave_agent_agencies','45'),(1091,319,'_primary_term_agent_category','4'),(1092,322,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1093,322,'_edit_last','1'),(1094,322,'_edit_lock','1600544626:1'),(1095,323,'_wp_attached_file','2018/09/Jason_Overcash.jpg'),(1096,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:337;s:6:\"height\";i:395;s:4:\"file\";s:26:\"2018/09/Jason_Overcash.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-128x150.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-337x258.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-337x280.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-337x340.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-337x350.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Jason_Overcash-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1097,322,'_thumbnail_id','323'),(1098,322,'slide_template',''),(1099,322,'fave_agent_position','Licensed Agent'),(1100,322,'fave_agent_company','Lantern Realty and Development'),(1101,322,'fave_agent_website','lantern-realty.com'),(1102,322,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3367,322,'fave_agent_logo','22'),(1104,322,'fave_agent_agencies','45'),(1105,322,'_primary_term_agent_category','4'),(1107,325,'_edit_last','1'),(1108,325,'_edit_lock','1535916499:1'),(1109,326,'_wp_attached_file','2018/09/RowanCounty.png'),(1110,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2018/09/RowanCounty.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"RowanCounty-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"RowanCounty-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"RowanCounty-150x64.png\";s:5:\"width\";i:150;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"RowanCounty-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"RowanCounty-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"RowanCounty-570x300.png\";s:5:\"width\";i:570;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"RowanCounty-350x300.png\";s:5:\"width\";i:350;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"RowanCounty-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"RowanCounty-350x150.png\";s:5:\"width\";i:350;s:6:\"height\";i:150;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:{}}}'),(1149,328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1112,325,'slide_template','default'),(1113,325,'_wpb_vc_js_status','false'),(1114,325,'fave_default_view','list_view'),(1115,325,'fave_properties_sort','d_date'),(1116,325,'fave_featured_prop_no','4'),(1117,325,'fave_prop_no','9'),(1118,325,'fave_listings_tabs','enable'),(1119,325,'fave_prop_no_halfmap','9'),(1120,325,'fave_properties_sort_halfmap','d_date'),(1121,325,'fave_agency_orderby','None'),(1122,325,'fave_agency_order','ASC'),(1123,325,'fave_agent_orderby','None'),(1124,325,'fave_agent_order','ASC'),(1125,325,'fave_page_title','show'),(1126,325,'fave_page_breadcrumb','show'),(1127,325,'fave_page_sidebar','right_sidebar'),(1128,325,'fave_page_background','yes'),(1129,325,'fave_header_type','static_image'),(1130,325,'fave_header_full_screen','0'),(1131,325,'fave_header_full_screen_type','screen_fix'),(1132,325,'fave_page_header_title','Homes for Sale in Rowan County'),(1133,325,'fave_page_header_search','0'),(1145,325,'fave_page_header_image','326'),(1135,325,'fave_page_header_image_opacity','0.5'),(1136,325,'fave_page_header_video_overlay','yes'),(1137,325,'fave_main_menu_trans','no'),(1138,325,'fave_adv_search_enable','global'),(1139,325,'fave_adv_search','hide'),(1140,325,'fave_adv_search_pos','under_menu'),(1141,325,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(1146,152,'fave_page_header_title','Recently Sold by Lantern Agents'),(1148,152,'fave_page_header_image','56'),(1150,328,'_edit_last','1'),(1151,328,'_edit_lock','1535989010:1'),(1152,350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1153,350,'_edit_last','1'),(1154,350,'_edit_lock','1590757522:1'),(1156,350,'slide_template','default'),(1157,350,'_wpb_vc_js_status','true'),(1158,350,'fave_default_view','list_view'),(1159,350,'fave_properties_sort','d_date'),(1160,350,'fave_featured_prop_no','4'),(1161,350,'fave_prop_no','9'),(1162,350,'fave_listings_tabs','enable'),(1163,350,'fave_prop_no_halfmap','9'),(1164,350,'fave_properties_sort_halfmap','d_date'),(1165,350,'fave_agency_orderby','None'),(1166,350,'fave_agency_order','ASC'),(1167,350,'fave_agent_orderby','None'),(1168,350,'fave_agent_order','ASC'),(1169,350,'fave_page_title','hide'),(1170,350,'fave_page_breadcrumb','hide'),(1171,350,'fave_page_sidebar','none'),(1172,350,'fave_page_background','yes'),(1173,350,'fave_header_type','static_image'),(1174,350,'fave_header_full_screen','0'),(1175,350,'fave_header_full_screen_type','screen_fix'),(1176,350,'fave_page_header_search','0'),(1177,350,'fave_page_header_image_opacity','0.5'),(1178,350,'fave_page_header_video_overlay','yes'),(1179,350,'fave_main_menu_trans','no'),(1180,350,'fave_adv_search_enable','global'),(1181,350,'fave_adv_search','hide'),(1182,350,'fave_adv_search_pos','under_menu'),(1183,350,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(1185,350,'fave_page_header_title','Contact The Lantern Team'),(1206,350,'fave_page_header_image','192'),(1199,350,'fave_page_header_image_height','400'),(1194,192,'_wp_attachment_backup_sizes','a:17:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:9:\"team4.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"team4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:17:\"team4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:17:\"team4-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:18:\"team4-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:17:\"team4-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-single-big-size-orig\";a:4:{s:4:\"file\";s:18:\"team4-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"houzez-property-thumb-image-orig\";a:4:{s:4:\"file\";s:17:\"team4-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-thumb-image-v2-orig\";a:4:{s:4:\"file\";s:17:\"team4-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image570_340-orig\";a:4:{s:4:\"file\";s:17:\"team4-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"houzez-property-detail-gallery-orig\";a:4:{s:4:\"file\";s:17:\"team4-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"houzez-imageSize1170_738-orig\";a:4:{s:4:\"file\";s:18:\"team4-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-prop_image1440_610-orig\";a:4:{s:4:\"file\";s:18:\"team4-1280x610.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-image350_350-orig\";a:4:{s:4:\"file\";s:17:\"team4-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-widget-prop-orig\";a:4:{s:4:\"file\";s:17:\"team4-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:17:\"team4-350x263.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-toparea-v5-orig\";a:4:{s:4:\"file\";s:17:\"team4-640x480.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1204,350,'_wp_page_template','template/template-page.php'),(1207,353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1208,354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1210,356,'_wp_attached_file','2018/09/ehomlslogo-e1536839880237.png'),(1211,356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:99;s:4:\"file\";s:37:\"2018/09/ehomlslogo-e1536839880237.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"ehomlslogo-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"ehomlslogo-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-385x237.png\";s:5:\"width\";i:385;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-380x237.png\";s:5:\"width\";i:380;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-570x237.png\";s:5:\"width\";i:570;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-350x237.png\";s:5:\"width\";i:350;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"ehomlslogo-350x116.png\";s:5:\"width\";i:350;s:6:\"height\";i:116;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:{}}}'),(1212,356,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:717;s:6:\"height\";i:237;s:4:\"file\";s:14:\"ehomlslogo.png\";}}'),(1213,358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1214,359,'_wp_attached_file','2018/09/Tabitha_Furr-e1537041731903.jpeg'),(1215,359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:411;s:4:\"file\";s:40:\"2018/09/Tabitha_Furr-e1537041731903.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-292x300.jpeg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-768x788.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:788;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Tabitha_Furr-998x1024.jpeg\";s:5:\"width\";i:998;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-146x150.jpeg\";s:5:\"width\";i:146;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Tabitha_Furr-1170x600.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-810x430.jpeg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Tabitha_Furr-1170x738.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Tabitha_Furr-1440x610.jpeg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-350x359.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Tabitha_Furr-468x480.jpeg\";s:5:\"width\";i:468;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1536529380\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"58\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1216,359,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2729;s:6:\"height\";i:2801;s:4:\"file\";s:17:\"Tabitha_Furr.jpeg\";}s:18:\"full-1537041731903\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:411;s:4:\"file\";s:32:\"Tabitha_Furr-e1537041710587.jpeg\";}}'),(1217,358,'_edit_last','1'),(1218,358,'_thumbnail_id','359'),(1219,358,'slide_template',''),(1221,358,'fave_agent_email','tabithafurr@yahoo.com'),(1222,358,'fave_agent_position','Licensed Agent'),(1223,358,'fave_agent_company','Lantern Realty and Development'),(1224,358,'fave_agent_website','lantern-realty.com'),(1225,358,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1293,358,'fave_agent_logo','22'),(1227,358,'fave_agent_agencies','45'),(1228,358,'_primary_term_agent_category','4'),(1229,358,'_edit_lock','1588015536:1'),(1230,361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1231,361,'_edit_last','1'),(1232,361,'_edit_lock','1600543086:1'),(1233,362,'_wp_attached_file','2018/09/Tanner_Bost.jpg'),(1234,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:479;s:6:\"height\";i:522;s:4:\"file\";s:23:\"2018/09/Tanner_Bost.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-275x300.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-138x150.jpg\";s:5:\"width\";i:138;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-479x340.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-479x430.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-350x381.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Tanner_Bost-440x480.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1235,361,'_thumbnail_id','362'),(1236,361,'slide_template',''),(1237,361,'fave_agent_position','Licensed Agent'),(1238,361,'fave_agent_company','Lantern Realty and Development'),(1239,361,'fave_agent_website','lantern-realty.com'),(1240,361,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3250,361,'fave_agent_logo','28'),(1242,361,'fave_agent_agencies','45'),(1243,361,'_primary_term_agent_category','6'),(1244,319,'fave_agent_email','homesbywanda@gmail.com'),(1245,319,'fave_agent_mobile','704-232-3605'),(1247,361,'fave_agent_email','tannerbostrealty@gmail.com'),(1248,361,'fave_agent_mobile','704-793-3087'),(1250,126,'fave_agent_email','elizabethbrownrealtor@gmail.com'),(1251,126,'fave_agent_mobile','704-421-0317'),(1253,126,'_primary_term_agent_category','4'),(1254,123,'fave_agent_email','woodybrownsells@gmail.com'),(1255,123,'fave_agent_mobile','704-762-6457'),(1257,123,'_primary_term_agent_category','6'),(1258,144,'fave_agent_email','wesleycc.lantern@gmail.com'),(1259,144,'fave_agent_mobile','704-779-7136'),(1261,144,'_primary_term_agent_category','4'),(1262,135,'fave_agent_email','amyevansrealty@gmail.com'),(1263,135,'fave_agent_mobile','704-273-0107'),(1265,135,'_primary_term_agent_category','4'),(1266,322,'fave_agent_email','jasonovercashrealty@gmail.com'),(1267,322,'fave_agent_mobile','980-622-6327'),(1269,358,'fave_agent_mobile','704-578-9214'),(1272,138,'fave_agent_email','krrunyon1@gmail.com'),(1273,138,'fave_agent_mobile','704-652-1977'),(1275,138,'_primary_term_agent_category','4'),(1276,132,'fave_agent_email','grantstevens.lanterndevelopment@gmail.com'),(1277,132,'fave_agent_mobile','980-428-2222'),(1279,132,'_primary_term_agent_category','4'),(1280,141,'fave_agent_email','ethanstillingerlrd@gmail.com'),(1281,141,'fave_agent_mobile','704-957-1282'),(1283,141,'_primary_term_agent_category','4'),(1284,129,'fave_agent_email','jennwood@carolina.rr.com'),(1285,129,'fave_agent_mobile','704-490-2124'),(1287,129,'_primary_term_agent_category','4'),(1333,377,'_thumbnail_id','378'),(1334,377,'slide_template',''),(1335,377,'fave_agent_position','Licensed Agent'),(1336,377,'fave_agent_company','Lantern Realty and Development'),(1337,377,'fave_agent_website','lantern-realty.com'),(1338,377,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1339,377,'fave_agent_agencies','45'),(1340,377,'_primary_term_agent_category','4'),(1341,380,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1342,381,'_wp_attached_file','2018/11/Crystal_Cauble.jpg'),(1343,381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:303;s:4:\"file\";s:26:\"2018/11/Crystal_Cauble.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-302x258.jpg\";s:5:\"width\";i:302;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-302x280.jpg\";s:5:\"width\";i:302;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Crystal_Cauble-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;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:\"1541171036\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1290,37,'_primary_term_agent_category','3'),(1344,380,'_edit_last','1'),(1345,380,'_thumbnail_id','381'),(1346,380,'slide_template',''),(1347,380,'fave_agent_position','Licensed Agent'),(1348,380,'fave_agent_company','Lantern Realty and Development'),(1349,380,'fave_agent_website','lantern-realty.com'),(1350,380,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1351,380,'fave_agent_agencies','45'),(1352,380,'_primary_term_agent_category','4'),(1353,380,'_edit_lock','1600543205:1'),(1354,383,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1355,384,'_wp_attached_file','2018/11/Kim_Drakulich.jpg'),(1356,384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:752;s:6:\"height\";i:752;s:4:\"file\";s:25:\"2018/11/Kim_Drakulich.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-752x600.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-752x430.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-752x738.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-752x610.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Kim_Drakulich-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:19:\"Christos Van Nathan\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1541171010\";s:9:\"copyright\";s:31:\"Christos Van Nathan photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1357,383,'_edit_last','1'),(1358,383,'_thumbnail_id','2113'),(1360,383,'fave_agent_email','kim@kimsellsconcord.com'),(1361,383,'fave_agent_position','Licensed Agent'),(1362,383,'fave_agent_company','Lantern Realty and Development'),(1363,383,'fave_agent_mobile','(704) 778-6959'),(1364,383,'fave_agent_website','lantern-realty.com'),(1365,383,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(1366,383,'fave_agent_agencies','45'),(1367,383,'_primary_term_agent_category','4'),(1368,383,'_edit_lock','1637540748:1'),(1372,387,'_wp_attached_file','2018/11/Lisa_Crowder.jpg'),(1373,387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:768;s:4:\"file\";s:24:\"2018/11/Lisa_Crowder.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x600.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x430.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x738.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-768x610.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Lisa_Crowder-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;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:\"1541170972\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3393,373,'fave_agent_logo','22'),(3234,370,'fave_agent_logo','22'),(3261,380,'fave_agent_logo','22'),(11665,383,'fave_agent_logo','22'),(3330,377,'fave_agent_logo','22'),(1390,390,'_edit_last','1'),(1391,390,'_edit_lock','1600544323:1'),(1392,391,'_wp_attached_file','2019/01/Melissa-Jackling.jpg'),(1393,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:286;s:6:\"height\";i:273;s:4:\"file\";s:28:\"2019/01/Melissa-Jackling.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Melissa-Jackling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Melissa-Jackling-150x143.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Melissa-Jackling-286x258.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Melissa-Jackling-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;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:\"1546626404\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1394,390,'_thumbnail_id','391'),(1395,390,'slide_template',''),(1396,390,'fave_agent_email','onlymyrealtormelissa@gmail.com'),(1397,390,'fave_agent_position','Licensed Agent'),(1398,390,'fave_agent_company','Lantern Realty and Development'),(1399,390,'fave_agent_mobile','980-621-4623'),(1400,390,'fave_agent_website','https://lantern-realty.com/'),(1401,390,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3346,390,'fave_agent_logo','28'),(1403,390,'fave_agent_agencies','45'),(1404,390,'_primary_term_agent_category','4'),(1405,393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1406,393,'_edit_last','1'),(1407,393,'_edit_lock','1600543897:1'),(1408,394,'_wp_attached_file','2019/01/Lynnette-Gearing.jpg'),(1409,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1099;s:6:\"height\";i:1203;s:4:\"file\";s:28:\"2019/01/Lynnette-Gearing.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-768x841.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:841;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Lynnette-Gearing-935x1024.jpg\";s:5:\"width\";i:935;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-137x150.jpg\";s:5:\"width\";i:137;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:29:\"Lynnette-Gearing-1099x600.jpg\";s:5:\"width\";i:1099;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:29:\"Lynnette-Gearing-1099x738.jpg\";s:5:\"width\";i:1099;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:29:\"Lynnette-Gearing-1099x610.jpg\";s:5:\"width\";i:1099;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-350x383.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Lynnette-Gearing-439x480.jpg\";s:5:\"width\";i:439;s:6:\"height\";i:480;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:\"1546626021\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1410,393,'_thumbnail_id','394'),(1411,393,'slide_template',''),(1426,380,'fave_agent_email','crystalcauble27@gmail.com'),(1427,380,'fave_agent_mobile','980-521-8431'),(1429,400,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1430,400,'_edit_last','1'),(1431,400,'_edit_lock','1600544411:1'),(1432,401,'_wp_attached_file','2019/01/Lindsey_McCauley.jpg'),(1433,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:824;s:6:\"height\";i:724;s:4:\"file\";s:28:\"2019/01/Lindsey_McCauley.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-768x675.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-150x132.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-824x600.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-824x610.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-350x308.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:28:\"Lindsey_McCauley-546x480.jpg\";s:5:\"width\";i:546;s:6:\"height\";i:480;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:\"1547400143\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1413,393,'fave_agent_email','lynnettegearing.realtor@gmail.com'),(1414,393,'fave_agent_position','Licensed Agent'),(1415,393,'fave_agent_company','Lantern Realty and Development'),(1416,393,'fave_agent_mobile','704-699-6902'),(1417,393,'fave_agent_website','lantern-realty.com'),(1418,393,'fave_agent_facebook','facebook.com/lanternrealty'),(3318,393,'fave_agent_logo','28'),(1420,393,'fave_agent_agencies','45'),(1421,393,'_primary_term_agent_category','4'),(1434,400,'_thumbnail_id','401'),(1435,400,'slide_template',''),(1436,400,'fave_agent_email','lmccauley727@gmail.com'),(1437,400,'fave_agent_position','Licensed Agent'),(1438,400,'fave_agent_company','Lantern Realty and Development'),(1439,400,'fave_agent_mobile','704-236-7850'),(1440,400,'fave_agent_website','lantern-realty.com'),(1441,400,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3354,400,'fave_agent_logo','22'),(1443,400,'fave_agent_agencies','45'),(1444,400,'_primary_term_agent_category','4'),(1455,377,'fave_agent_mobile','704-608-7893'),(1457,411,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1458,411,'_edit_lock','1602978397:1'),(1459,411,'_edit_last','1'),(1460,411,'fave_agent_email','sheila.allison10@gmail.com'),(1461,411,'fave_agent_position','Licensed Agent'),(1462,411,'fave_agent_company','Lantern Realty and Development'),(1463,411,'fave_agent_mobile','828-712-7843'),(1464,411,'fave_agent_website','lantern-realty.com'),(1465,411,'fave_agent_facebook','facebook.com/lanternrealty'),(5729,411,'fave_agent_logo','22'),(1467,411,'slide_template',''),(1469,414,'_wp_attached_file','2019/02/Sheila-Allison.jpg'),(1470,414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1714;s:6:\"height\";i:1728;s:4:\"file\";s:26:\"2019/02/Sheila-Allison.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-768x774.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:774;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Sheila-Allison-1016x1024.jpg\";s:5:\"width\";i:1016;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Sheila-Allison-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Sheila-Allison-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Sheila-Allison-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-350x353.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Sheila-Allison-476x480.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:480;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:\"1549630568\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1471,411,'_thumbnail_id','414'),(1473,411,'fave_agent_agencies','759'),(1475,411,'_primary_term_agent_category','4'),(1476,416,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1477,416,'_edit_lock','1600542968:1'),(1478,417,'_wp_attached_file','2019/02/Casey-Barber.jpg'),(1479,417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:618;s:4:\"file\";s:24:\"2019/02/Casey-Barber.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-133x150.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-550x600.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-550x340.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-550x430.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-550x610.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-350x393.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Casey-Barber-427x480.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:18:\"Canon EOS Rebel T6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1542803702\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1480,416,'_thumbnail_id','417'),(1481,416,'_edit_last','1'),(1482,416,'fave_agent_email','casey.m.barber@gmail.com'),(1483,416,'fave_agent_position','Licensed Agent'),(1484,416,'fave_agent_company','Lantern Realty and Development'),(1485,416,'fave_agent_mobile','678-516-5196'),(1486,416,'fave_agent_website','lantern-realty.com'),(1487,416,'fave_agent_facebook','facebook.com/lanternrealty'),(3238,416,'fave_agent_logo','22'),(1489,416,'fave_agent_agencies','45'),(1490,416,'_primary_term_agent_category','4'),(1491,416,'slide_template',''),(1492,419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1493,419,'_edit_lock','1600543980:1'),(1494,419,'_edit_last','1'),(1495,419,'fave_agent_position','Licensed Agent'),(1496,419,'fave_agent_company','Lantern Realty and Development'),(3329,419,'fave_agent_logo','22'),(1498,419,'fave_agent_agencies','45'),(1499,419,'slide_template',''),(1500,421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1501,421,'_edit_lock','1588015657:1'),(1502,421,'_edit_last','1'),(1503,421,'fave_agent_email','ejhenry01970@gmail.com'),(1504,421,'fave_agent_position','Licensed Agent'),(1505,421,'fave_agent_company','Lantern Realty and Development'),(1506,421,'fave_agent_mobile','704-701-1491'),(1507,421,'fave_agent_website','lantern-realty.com'),(1508,421,'fave_agent_facebook','facebook.com/lanternrealty'),(2079,421,'fave_agent_logo','22'),(1510,421,'slide_template',''),(1511,423,'_wp_attached_file','2019/02/Erica-Henry.jpg'),(1512,423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2088;s:6:\"height\";i:2318;s:4:\"file\";s:23:\"2019/02/Erica-Henry.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-768x853.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Erica-Henry-922x1024.jpg\";s:5:\"width\";i:922;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Erica-Henry-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Erica-Henry-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Erica-Henry-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-350x389.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Erica-Henry-432x480.jpg\";s:5:\"width\";i:432;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1521704403\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"66\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1513,421,'_thumbnail_id','423'),(1515,421,'fave_agent_agencies','45'),(1517,421,'_primary_term_agent_category','6'),(1518,424,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1519,424,'_edit_lock','1600616087:1'),(1520,425,'_wp_attached_file','2019/02/Melissa-LaCroix.jpg'),(1521,425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2383;s:6:\"height\";i:2412;s:4:\"file\";s:27:\"2019/02/Melissa-LaCroix.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-768x777.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Melissa-LaCroix-1012x1024.jpg\";s:5:\"width\";i:1012;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-148x150.jpg\";s:5:\"width\";i:148;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Melissa-LaCroix-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:28:\"Melissa-LaCroix-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Melissa-LaCroix-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-350x354.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:354;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Melissa-LaCroix-474x480.jpg\";s:5:\"width\";i:474;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535444900\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1522,424,'_thumbnail_id','425'),(1523,424,'_edit_last','1'),(1524,424,'fave_agent_email','mlacroix.realty@gmail.com'),(1525,424,'fave_agent_position','Licensed Agent'),(1526,424,'fave_agent_company','Lantern Realty and Development'),(1527,424,'fave_agent_mobile','704-796-6531'),(1528,424,'fave_agent_website','lantern-realty.com'),(1529,424,'fave_agent_facebook','facebook.com/lanternrealty'),(3951,424,'fave_agent_logo','22'),(1531,424,'fave_agent_agencies','45'),(1532,424,'_primary_term_agent_category','4'),(1533,424,'slide_template',''),(1534,427,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1535,427,'_edit_lock','1651356167:1'),(1536,428,'_wp_attached_file','2019/02/Sandi-Laney.jpg'),(1537,428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1219;s:6:\"height\";i:1362;s:4:\"file\";s:23:\"2019/02/Sandi-Laney.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-768x858.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:858;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Sandi-Laney-916x1024.jpg\";s:5:\"width\";i:916;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-134x150.jpg\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Sandi-Laney-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Sandi-Laney-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Sandi-Laney-1219x610.jpg\";s:5:\"width\";i:1219;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-350x391.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Sandi-Laney-430x480.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"LM-V405\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548326868\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.23\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1538,427,'_thumbnail_id','428'),(1539,427,'_edit_last','1'),(1540,427,'fave_agent_email','sandilaney2@gmail.com'),(1541,427,'fave_agent_position','Licensed Agent'),(1542,427,'fave_agent_company','Lantern Realty and Development'),(1543,427,'fave_agent_mobile','704-773-5886'),(1544,427,'fave_agent_website','lantern-realty.com'),(1545,427,'fave_agent_facebook','facebook.com/lanternrealty'),(3374,427,'fave_agent_logo','22'),(1547,427,'fave_agent_agencies','45'),(1548,427,'_primary_term_agent_category','4'),(1550,430,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1551,430,'_edit_lock','1600544708:1'),(1552,431,'_wp_attached_file','2019/02/Laura-Overcash.jpg'),(1553,431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:284;s:6:\"height\";i:323;s:4:\"file\";s:26:\"2019/02/Laura-Overcash.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-264x300.jpg\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-132x150.jpg\";s:5:\"width\";i:132;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-284x258.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-284x280.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Laura-Overcash-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1516792912\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"62\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1554,430,'_thumbnail_id','431'),(1555,430,'_edit_last','1'),(1556,430,'fave_agent_email','lovercashre@gmail.com'),(1557,430,'fave_agent_position','Licensed Agent'),(1558,430,'fave_agent_company','Lantern Realty and Development'),(1559,430,'fave_agent_mobile','704-699-0765'),(1560,430,'fave_agent_website','lantern-realty.com'),(1561,430,'fave_agent_facebook','facebook.com/lanternrealty'),(3372,430,'fave_agent_logo','22'),(1563,430,'fave_agent_agencies','45'),(1564,430,'_primary_term_agent_category','4'),(1565,430,'slide_template',''),(1665,467,'_wp_attached_file','2019/05/Farm-Bureau.png'),(1568,434,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1569,434,'_edit_lock','1600546217:1'),(1570,434,'_edit_last','1'),(1571,434,'fave_agent_position','Licensed Agent'),(1572,434,'fave_agent_company','Lantern Realty and Development'),(1573,434,'fave_agent_website','lantern-realty.com'),(1574,434,'fave_agent_facebook','facebook.com/lanternrealty'),(3376,434,'fave_agent_logo','22'),(1576,434,'fave_agent_agencies','758'),(1577,434,'_primary_term_agent_category','4'),(1578,434,'slide_template',''),(1579,436,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1580,436,'_edit_lock','1573841428:1'),(1581,437,'_wp_attached_file','2019/02/Jill-Sawant.jpg'),(1582,437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1971;s:6:\"height\";i:1842;s:4:\"file\";s:23:\"2019/02/Jill-Sawant.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-300x280.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-768x718.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Jill-Sawant-1024x957.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:957;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Jill-Sawant-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Jill-Sawant-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Jill-Sawant-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-350x327.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Jill-Sawant-514x480.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:27:\"Canon EOS DIGITAL REBEL XTi\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1516933980\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"92\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1583,436,'_thumbnail_id','437'),(1584,436,'_edit_last','1'),(1585,436,'fave_agent_email','jill@sawantrealtygroup.com'),(1586,436,'fave_agent_position','Licensed Agent'),(1587,436,'fave_agent_company','Lantern Realty and Development'),(1588,436,'fave_agent_website','lantern-realty.com'),(1589,436,'fave_agent_facebook','facebook.com/lanternrealty'),(1590,436,'fave_agent_logo','22'),(1591,436,'fave_agent_agencies','45'),(1592,436,'_primary_term_agent_category','4'),(1593,436,'slide_template',''),(1594,439,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1595,439,'_edit_lock','1600546292:1'),(1596,440,'_wp_attached_file','2019/02/John-Suther.jpg'),(1597,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3520;s:6:\"height\";i:4032;s:4:\"file\";s:23:\"2019/02/John-Suther.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"John-Suther-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"John-Suther-262x300.jpg\";s:5:\"width\";i:262;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"John-Suther-768x880.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"John-Suther-894x1024.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"John-Suther-131x150.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"John-Suther-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"John-Suther-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"John-Suther-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"John-Suther-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"John-Suther-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"John-Suther-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"John-Suther-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"John-Suther-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"John-Suther-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"John-Suther-350x401.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"John-Suther-419x480.jpg\";s:5:\"width\";i:419;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 6D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1543417312\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1598,439,'_thumbnail_id','440'),(1599,439,'_edit_last','1'),(1600,439,'fave_agent_email','johnsutherllc@gmail.com'),(1601,439,'fave_agent_position','Licensed Agent'),(1602,439,'fave_agent_company','Lantern Realty and Development'),(1603,439,'fave_agent_mobile','704-622-1432'),(1604,439,'fave_agent_website','lantern-realty.com'),(1605,439,'fave_agent_facebook','facebook.com/lanternrealty'),(3384,439,'fave_agent_logo','22'),(1607,439,'fave_agent_agencies','45'),(1608,439,'_primary_term_agent_category','4'),(1609,439,'slide_template',''),(1610,442,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1611,442,'_edit_lock','1645148725:1'),(1612,442,'_edit_last','1'),(1613,442,'fave_agent_position','Licensed Agent'),(1614,442,'fave_agent_company','Lantern Realty and Development'),(1615,442,'fave_agent_website','lantern-realty.com'),(1616,442,'fave_agent_facebook','facebook.com/lanternrealty'),(3386,442,'fave_agent_logo','22'),(1618,442,'fave_agent_agencies','45'),(1619,442,'_primary_term_agent_category','4'),(1621,444,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1622,444,'_edit_lock','1600546349:1'),(1623,445,'_wp_attached_file','2019/02/Todd-Wooley.jpg'),(1624,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1427;s:6:\"height\";i:1435;s:4:\"file\";s:23:\"2019/02/Todd-Wooley.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-768x772.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:772;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Todd-Wooley-1018x1024.jpg\";s:5:\"width\";i:1018;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Todd-Wooley-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Todd-Wooley-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Todd-Wooley-1427x610.jpg\";s:5:\"width\";i:1427;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-350x352.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Todd-Wooley-477x480.jpg\";s:5:\"width\";i:477;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549631956\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1625,444,'_thumbnail_id','445'),(1626,444,'_edit_last','1'),(1627,444,'fave_agent_email','twooleyrealty@gmail.com'),(1628,444,'fave_agent_position','Licensed Agent'),(1629,444,'fave_agent_company','Lantern Realty and Development'),(1630,444,'fave_agent_mobile','704-904-7162'),(1631,444,'fave_agent_website','lantern-realty.com'),(1632,444,'fave_agent_facebook','facebook.com/lanternrealty'),(3389,444,'fave_agent_logo','22'),(1634,444,'fave_agent_agencies','45'),(1635,444,'_primary_term_agent_category','4'),(1636,444,'slide_template',''),(1637,448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1638,448,'_edit_last','1'),(1639,448,'_edit_lock','1549654961:1'),(1640,449,'_wp_attached_file','2019/02/PARTNER-Terry-Whitesell.jpg'),(1641,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:278;s:4:\"file\";s:35:\"2019/02/PARTNER-Terry-Whitesell.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"PARTNER-Terry-Whitesell-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"PARTNER-Terry-Whitesell-121x150.jpg\";s:5:\"width\";i:121;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:35:\"PARTNER-Terry-Whitesell-224x258.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:35:\"PARTNER-Terry-Whitesell-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Jessica Cook\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1642,448,'_thumbnail_id','451'),(1643,448,'slide_template','default'),(1644,448,'fave_partner_website','http://www.terrywhitesell.com/'),(1645,451,'_wp_attached_file','2019/02/Terry-Whitesell.png'),(1646,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:952;s:6:\"height\";i:444;s:4:\"file\";s:27:\"2019/02/Terry-Whitesell.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-768x358.png\";s:5:\"width\";i:768;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Terry-Whitesell-150x70.png\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-810x430.png\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Terry-Whitesell-350x163.png\";s:5:\"width\";i:350;s:6:\"height\";i:163;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:{}}}'),(1647,452,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1648,452,'_edit_last','1'),(1649,452,'_edit_lock','1549655177:1'),(1650,453,'_wp_attached_file','2019/02/HomeWarrantyofAmerica.jpg'),(1651,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:331;s:6:\"height\";i:144;s:4:\"file\";s:33:\"2019/02/HomeWarrantyofAmerica.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"HomeWarrantyofAmerica-150x144.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"HomeWarrantyofAmerica-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"HomeWarrantyofAmerica-150x65.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:33:\"HomeWarrantyofAmerica-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;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:11:\"HWA - 13 mo\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1652,452,'_thumbnail_id','453'),(1653,452,'slide_template','default'),(1654,452,'fave_partner_website','https://www.hwahomewarranty.com/'),(1655,455,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1656,455,'_edit_last','1'),(1657,455,'_edit_lock','1549655224:1'),(1658,456,'_wp_attached_file','2019/02/KnippLaw.jpg'),(1659,456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:272;s:4:\"file\";s:20:\"2019/02/KnippLaw.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"KnippLaw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"KnippLaw-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"KnippLaw-150x82.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:20:\"KnippLaw-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:20:\"KnippLaw-380x272.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:20:\"KnippLaw-350x272.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:20:\"KnippLaw-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"KnippLaw-350x190.jpg\";s:5:\"width\";i:350;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:{}}}'),(1660,455,'_thumbnail_id','456'),(1661,455,'slide_template','default'),(1662,455,'fave_partner_website','https://knipplaw.com/real-estate-attorneys-law-firm-lake-norman/'),(1666,467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:496;s:4:\"file\";s:23:\"2019/05/Farm-Bureau.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-300x194.png\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-768x496.png\";s:5:\"width\";i:768;s:6:\"height\";i:496;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Farm-Bureau-150x97.png\";s:5:\"width\";i:150;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-768x430.png\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-350x226.png\";s:5:\"width\";i:350;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Farm-Bureau-743x480.png\";s:5:\"width\";i:743;s:6:\"height\";i:480;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:{}}}'),(1667,468,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1668,468,'_edit_lock','1600542992:1'),(1669,468,'_thumbnail_id','541'),(1670,468,'_edit_last','1'),(1671,468,'fave_agent_email','rbendig89@gmail.com'),(1672,468,'fave_agent_position','Licensed Agent'),(1673,468,'fave_agent_company','Lantern Realty and Development'),(1674,468,'fave_agent_mobile','(704) 640-4171'),(1675,468,'fave_agent_website','lantern-realty.com'),(1676,468,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3240,468,'fave_agent_logo','22'),(1678,468,'fave_agent_agencies','757'),(1679,468,'_primary_term_agent_category','4'),(1680,468,'slide_template',''),(1681,470,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1682,470,'_edit_lock','1645147799:1'),(1683,471,'_wp_attached_file','2019/06/Jessica_Cloward.jpg'),(1684,471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2019/06/Jessica_Cloward.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-127x150.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-362x258.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-362x280.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-362x340.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Jessica_Cloward-350x412.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1685,470,'_thumbnail_id','2261'),(1686,470,'_edit_last','1'),(1687,470,'fave_agent_email','jessicacloward1@gmail.com'),(1688,470,'fave_agent_position','Licensed Agent'),(1689,470,'fave_agent_company','Lantern Realty and Development'),(1690,470,'fave_agent_mobile','(704) 502-8383'),(1691,470,'fave_agent_website','lantern-realty.com'),(1692,470,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11940,470,'fave_agent_logo','22'),(1694,470,'fave_agent_agencies','757'),(1695,470,'_primary_term_agent_category','4'),(11941,819,'fave_agent_visible','0'),(1697,473,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1698,473,'_edit_lock','1637540519:1'),(1699,474,'_wp_attached_file','2019/06/Kimberly_Howell.jpg'),(1700,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:539;s:6:\"height\";i:539;s:4:\"file\";s:27:\"2019/06/Kimberly_Howell.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-539x340.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-539x430.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Kimberly_Howell-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;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:{}}}'),(1701,473,'_thumbnail_id','474'),(1702,473,'_edit_last','1'),(1703,473,'fave_agent_email','kdhowell1996@gmail.com'),(1704,473,'fave_agent_position','Licensed Agent'),(1705,473,'fave_agent_company','Lantern Realty and Development'),(1706,473,'fave_agent_mobile','(704) 699-2600'),(1707,473,'fave_agent_website','lantern-realty.com'),(1708,473,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3344,473,'fave_agent_logo','22'),(1710,473,'fave_agent_agencies','757'),(1711,473,'_primary_term_agent_category','4'),(1713,476,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1714,476,'_edit_lock','1600544340:1'),(1715,476,'_thumbnail_id','543'),(1716,476,'_edit_last','1'),(1717,476,'fave_agent_email','cjalynskirealty@gmail.com'),(1718,476,'fave_agent_position','Licensed Agent'),(1719,476,'fave_agent_company','Lantern Realty and Development'),(1720,476,'fave_agent_mobile','(704) 749-4944'),(1721,476,'fave_agent_website','lantern-realty.com'),(1722,476,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3348,476,'fave_agent_logo','22'),(1724,476,'fave_agent_agencies','45'),(1725,476,'_primary_term_agent_category','4'),(1726,476,'slide_template',''),(1727,478,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1728,478,'_edit_lock','1588015803:1'),(1729,479,'_wp_attached_file','2019/06/Leslie_Liles.jpeg'),(1730,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:747;s:4:\"file\";s:25:\"2019/06/Leslie_Liles.jpeg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-281x300.jpeg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-141x150.jpeg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-700x600.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-700x430.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-700x738.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-700x610.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-350x374.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Leslie_Liles-450x480.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1731,478,'_thumbnail_id','479'),(1732,478,'_edit_last','1'),(1733,478,'fave_agent_email','leslieloo32@gmail.com'),(1734,478,'fave_agent_position','Licensed Agent'),(1735,478,'fave_agent_company','Lantern Realty and Development'),(1736,478,'fave_agent_mobile','(704) 984-2139'),(1737,478,'fave_agent_website','lantern-realty.com'),(1738,478,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2077,478,'fave_agent_logo','22'),(1740,478,'_primary_term_agent_category','6'),(1741,478,'slide_template',''),(1742,481,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1743,481,'_edit_lock','1630720136:1'),(1744,482,'_wp_attached_file','2019/06/Helen_Matthews.jpg'),(1745,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:749;s:4:\"file\";s:26:\"2019/06/Helen_Matthews.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-140x150.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-700x600.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-700x430.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-700x738.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-700x610.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-350x375.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Helen_Matthews-449x480.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535447290\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"58\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1746,481,'_thumbnail_id','482'),(1747,481,'_edit_last','1'),(1748,481,'fave_agent_email','helenrobb4@gmail.com'),(1749,481,'fave_agent_position','Licensed Agent'),(1750,481,'fave_agent_company','Lantern Realty and Development'),(1751,481,'fave_agent_mobile','(704) 796-4026'),(1752,481,'fave_agent_website','lantern-realty.com'),(1753,481,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11453,481,'fave_agent_logo','22'),(1755,481,'fave_agent_agencies','45'),(1756,481,'_primary_term_agent_category','4'),(11456,2077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1758,484,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1759,484,'_edit_lock','1645148385:1'),(1760,485,'_wp_attached_file','2019/06/Julie_Nutter.jpg'),(1761,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:748;s:4:\"file\";s:24:\"2019/06/Julie_Nutter.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-140x150.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-700x600.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-700x430.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-700x738.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-700x610.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-350x374.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Julie_Nutter-449x480.jpg\";s:5:\"width\";i:449;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1762,484,'_thumbnail_id','2267'),(1763,484,'_edit_last','1'),(1764,484,'fave_agent_email','teamnutter@gmail.com'),(1765,484,'fave_agent_position','Licensed Agent'),(1766,484,'fave_agent_company','Lantern Realty and Development'),(1767,484,'fave_agent_mobile','(240) 888-7493'),(1768,484,'fave_agent_website','lantern-realty.com'),(1769,484,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11952,484,'fave_agent_logo','22'),(1771,484,'fave_agent_agencies','45'),(1772,484,'_primary_term_agent_category','4'),(11949,2267,'_wp_attached_file','2019/06/Julie_Nutter-2.jpg'),(1774,487,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1775,487,'_edit_lock','1613657814:1'),(1776,487,'_thumbnail_id','22'),(1777,487,'_edit_last','1'),(1778,487,'fave_agent_email','ncrealtorlisa@gmail.com'),(1779,487,'fave_agent_position','Licensed Agent'),(1780,487,'fave_agent_company','Lantern Realty and Development'),(1781,487,'fave_agent_mobile','(704) 288-7392'),(1782,487,'fave_agent_website','lantern-realty.com'),(1783,487,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3338,487,'fave_agent_logo','22'),(1785,487,'fave_agent_agencies','758'),(1786,487,'_primary_term_agent_category','4'),(1787,487,'slide_template',''),(1788,489,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1789,489,'_edit_lock','1573841251:1'),(1790,490,'_wp_attached_file','2019/06/Bridgett_Quinn.jpeg'),(1791,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:783;s:4:\"file\";s:27:\"2019/06/Bridgett_Quinn.jpeg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-268x300.jpeg\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-134x150.jpeg\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-700x600.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-700x430.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-700x738.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-700x610.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-350x392.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Bridgett_Quinn-429x480.jpeg\";s:5:\"width\";i:429;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1792,489,'_thumbnail_id','490'),(1793,489,'_edit_last','1'),(1794,489,'fave_agent_email','bquinnrealty@gmail.com'),(1795,489,'fave_agent_position','Licensed Agent'),(1796,489,'fave_agent_company','Lantern Realty and Development'),(1797,489,'fave_agent_mobile','(704) 724-9172'),(1798,489,'fave_agent_website','lantern-realty.com'),(1799,489,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2081,489,'fave_agent_logo','22'),(1801,489,'fave_agent_agencies','45'),(1802,489,'_primary_term_agent_category','6'),(1803,489,'slide_template',''),(1866,504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1744;s:6:\"height\";i:1761;s:4:\"file\";s:24:\"2019/07/kelly_keller.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"kelly_keller-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"kelly_keller-297x300.jpg\";s:5:\"width\";i:297;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"kelly_keller-768x775.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:775;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"kelly_keller-1014x1024.jpg\";s:5:\"width\";i:1014;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"kelly_keller-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"kelly_keller-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"kelly_keller-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"kelly_keller-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"kelly_keller-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"kelly_keller-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"kelly_keller-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"kelly_keller-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"kelly_keller-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"kelly_keller-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"kelly_keller-350x353.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"kelly_keller-475x480.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:480;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:16:\"SAMSUNG-SM-G930A\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1563470107\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.2\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:16:\"0.00126582278481\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1865,504,'_wp_attached_file','2019/07/kelly_keller.jpg'),(1864,503,'_edit_lock','1600544386:1'),(1863,503,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2060,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1537;s:6:\"height\";i:1531;s:4:\"file\";s:24:\"2019/06/Bret_Leonard.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-768x765.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Bret_Leonard-1024x1020.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Bret_Leonard-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Bret_Leonard-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Bret_Leonard-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-350x349.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Bret_Leonard-482x480.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:480;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:\"1559930173\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1835,497,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1836,497,'_edit_lock','1600544280:1'),(1837,497,'_thumbnail_id','542'),(1838,497,'_edit_last','1'),(1839,497,'fave_agent_email','buywithbret@gmail.com'),(1840,497,'fave_agent_position','Licensed Agent'),(1841,497,'fave_agent_company','Lantern Realty and Development'),(1842,497,'fave_agent_mobile','(980) 521-7156'),(1843,497,'fave_agent_website','lantern-realty.com'),(1844,497,'fave_agent_facebook','facebook.com/lanternrealty'),(3342,497,'fave_agent_logo','22'),(1846,497,'fave_agent_agencies','757'),(1847,497,'_primary_term_agent_category','4'),(1848,497,'slide_template',''),(1849,499,'_wp_attached_file','2019/02/Donna_Hawkins.jpg'),(1850,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:722;s:4:\"file\";s:25:\"2019/02/Donna_Hawkins.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-291x300.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-145x150.jpg\";s:5:\"width\";i:145;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-700x600.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-700x430.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-700x610.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-350x361.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-465x480.jpg\";s:5:\"width\";i:465;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1851,419,'_thumbnail_id','499'),(1853,419,'_primary_term_agent_category','6'),(1854,500,'_wp_attached_file','2019/02/Rick_Rhew.png'),(1855,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:178;s:4:\"file\";s:21:\"2019/02/Rick_Rhew.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Rick_Rhew-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Rick_Rhew-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:21:\"Rick_Rhew-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;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:{}}}'),(1856,434,'_thumbnail_id','500'),(1858,501,'_wp_attached_file','2019/02/Chuck_Thompson.jpg'),(1859,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:97;s:6:\"height\";i:150;s:4:\"file\";s:26:\"2019/02/Chuck_Thompson.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Chuck_Thompson-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Chuck_Thompson-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Chuck_Thompson-97x110.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:110;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:{}}}'),(1860,442,'_thumbnail_id','501'),(1867,503,'_thumbnail_id','504'),(1868,503,'_edit_last','1'),(1869,503,'fave_agent_email','kelly.keller.realty@gmail.com'),(1870,503,'fave_agent_position','Licensed Agent'),(1871,503,'fave_agent_company','Lantern Realty and Development'),(1872,503,'fave_agent_mobile','704-467-4485'),(1873,503,'fave_agent_facebook','http://facebook.com/lanternrealty'),(3352,503,'fave_agent_logo','22'),(1875,503,'fave_agent_agencies','45'),(1876,503,'_primary_term_agent_category','4'),(1877,503,'slide_template',''),(1880,508,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1881,508,'_edit_lock','1639143078:1'),(1882,508,'_edit_last','1'),(1883,508,'fave_default_view','list_view'),(1884,508,'fave_properties_sort','d_date'),(1885,508,'fave_featured_prop_no','4'),(1886,508,'fave_prop_no','9'),(1887,508,'fave_listings_tabs','enable'),(1888,508,'fave_prop_no_halfmap','9'),(1889,508,'fave_properties_sort_halfmap','d_date'),(1890,508,'fave_agency_orderby','None'),(1891,508,'fave_agency_order','ASC'),(1892,508,'fave_agent_orderby','None'),(1893,508,'fave_agent_order','ASC'),(1894,508,'fave_page_title','show'),(1895,508,'fave_page_breadcrumb','show'),(1896,508,'fave_page_sidebar','right_sidebar'),(1897,508,'fave_page_background','yes'),(1898,508,'fave_header_type','none'),(1899,508,'fave_header_full_screen','0'),(1900,508,'fave_header_full_screen_type','screen_fix'),(1901,508,'fave_page_header_search','0'),(1902,508,'fave_page_header_image_opacity','0.5'),(1903,508,'fave_page_header_video_overlay','yes'),(1904,508,'fave_main_menu_trans','no'),(1905,508,'fave_adv_search_enable','global'),(1906,508,'fave_adv_search','hide'),(1907,508,'fave_adv_search_pos','under_menu'),(1908,508,'slide_template','default'),(1909,508,'_wpb_vc_js_status','false'),(1910,508,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(1911,508,'_wp_page_template',''),(1912,514,'_wp_attached_file','2019/10/Geico_Matthew_Young.png'),(1913,514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2019/10/Geico_Matthew_Young.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-300x252.png\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-150x126.png\";s:5:\"width\";i:150;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-626x430.png\";s:5:\"width\";i:626;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-350x294.png\";s:5:\"width\";i:350;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:31:\"Geico_Matthew_Young-572x480.png\";s:5:\"width\";i:572;s:6:\"height\";i:480;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:{}}}'),(1914,515,'_wp_attached_file','2019/10/Geico-Logo.png'),(1915,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:29;s:4:\"file\";s:22:\"2019/10/Geico-Logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1916,517,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1917,517,'_menu_item_type','post_type'),(1918,517,'_menu_item_menu_item_parent','156'),(1919,517,'_menu_item_object_id','508'),(1920,517,'_menu_item_object','page'),(1921,517,'_menu_item_target',''),(1922,517,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1923,517,'_menu_item_xfn',''),(1924,517,'_menu_item_url',''),(2059,542,'_wp_attached_file','2019/06/Bret_Leonard.jpg'),(1926,518,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1927,518,'_menu_item_type','post_type'),(1928,518,'_menu_item_menu_item_parent','157'),(1929,518,'_menu_item_object_id','508'),(1930,518,'_menu_item_object','page'),(1931,518,'_menu_item_target',''),(1932,518,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1933,518,'_menu_item_xfn',''),(1934,518,'_menu_item_url',''),(2057,541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:247;s:6:\"height\";i:272;s:4:\"file\";s:25:\"2019/06/Robbie_Bendig.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Robbie_Bendig-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Robbie_Bendig-136x150.jpg\";s:5:\"width\";i:136;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Robbie_Bendig-247x258.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Robbie_Bendig-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1431733679\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2056,541,'_wp_attached_file','2019/06/Robbie_Bendig.jpg'),(2054,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:336;s:6:\"height\";i:280;s:4:\"file\";s:36:\"2019/11/Freedom_Mortgage_336x280.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-300x250.gif\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-150x125.gif\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/gif\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-336x258.gif\";s:5:\"width\";i:336;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/gif\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-336x280.gif\";s:5:\"width\";i:336;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:36:\"Freedom_Mortgage_336x280-150x110.gif\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2046,535,'_menu_item_object_id','535'),(2047,535,'_menu_item_object','custom'),(2048,535,'_menu_item_target',''),(2049,535,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2050,535,'_menu_item_xfn',''),(2051,535,'_menu_item_url','https://ryanivory.excellencebyarc.com/'),(2053,536,'_wp_attached_file','2019/11/Freedom_Mortgage_336x280.gif'),(2043,535,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2044,535,'_menu_item_type','custom'),(2045,535,'_menu_item_menu_item_parent','156'),(2010,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2011,528,'_edit_lock','1600616225:1'),(2012,529,'_wp_attached_file','2019/10/Brendas-Photo.jpg'),(2013,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2781;s:6:\"height\";i:3706;s:4:\"file\";s:25:\"2019/10/Brendas-Photo.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-768x1023.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Brendas-Photo-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-350x466.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Brendas-Photo-360x480.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:480;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:9:\"iPhone 6s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496753117\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2014,528,'_thumbnail_id','529'),(2015,528,'_edit_last','1'),(2016,528,'fave_agent_email','seniors2@twc.com'),(2017,528,'fave_agent_position','Licensed Agent'),(2018,528,'fave_agent_company','Lantern Realty and Development'),(2019,528,'fave_agent_mobile','704-796-1948'),(2020,528,'fave_agent_website','https://lantern-realty.com/'),(2021,528,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3953,528,'fave_agent_logo','28'),(2023,528,'fave_agent_agencies','45'),(2024,528,'_primary_term_agent_category','4'),(2025,528,'slide_template',''),(9286,1598,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2028,532,'_wp_attached_file','2019/10/Jessie_Henderson.jpeg'),(2029,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:255;s:4:\"file\";s:29:\"2019/10/Jessie_Henderson.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Jessie_Henderson-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Jessie_Henderson-141x150.jpeg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:29:\"Jessie_Henderson-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;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:\"1570205630\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2062,543,'_wp_attached_file','2019/06/Christine_Jalynski.jpeg'),(2063,543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1533;s:6:\"height\";i:1604;s:4:\"file\";s:31:\"2019/06/Christine_Jalynski.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-287x300.jpeg\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-768x804.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:804;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Christine_Jalynski-979x1024.jpeg\";s:5:\"width\";i:979;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-143x150.jpeg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:32:\"Christine_Jalynski-1170x600.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-810x430.jpeg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:32:\"Christine_Jalynski-1170x738.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:32:\"Christine_Jalynski-1440x610.jpeg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-350x366.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:31:\"Christine_Jalynski-459x480.jpeg\";s:5:\"width\";i:459;s:6:\"height\";i:480;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:\"1573817990\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2065,503,'fave_agent_website','http://lantern-realty.com'),(2067,370,'fave_agent_email','kadaendeavorenterprises@gmail.com'),(2068,370,'fave_agent_mobile','704-773-0722'),(2070,419,'fave_agent_email','dhawkinsrealty64@gmail.com'),(2071,419,'fave_agent_license','Licensed Agent'),(2072,419,'fave_agent_mobile','704-310-8218'),(2073,419,'fave_agent_website','http://lantern-realty.com'),(2074,419,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2085,546,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2086,546,'_edit_lock','1600543010:1'),(2087,547,'_wp_attached_file','2019/11/Toni_Benton.jpg'),(2088,547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2563;s:6:\"height\";i:2146;s:4:\"file\";s:23:\"2019/11/Toni_Benton.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-768x643.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:643;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Toni_Benton-1024x857.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:857;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-150x126.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Toni_Benton-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Toni_Benton-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Toni_Benton-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-350x293.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Toni_Benton-573x480.jpg\";s:5:\"width\";i:573;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:27:\"Canon EOS DIGITAL REBEL XTi\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1555350497\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2089,546,'_thumbnail_id','547'),(2090,546,'_edit_last','1'),(2091,546,'fave_agent_email','tbenton81@gmail.com'),(2092,546,'fave_agent_position','Licensed Agent'),(2093,546,'fave_agent_company','Lantern Realty and Development'),(2094,546,'fave_agent_mobile','980-521-2696'),(2095,546,'fave_agent_website','https://lantern-realty.com/'),(2096,546,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3242,546,'fave_agent_logo','22'),(2098,546,'fave_agent_agencies','45'),(2099,546,'_primary_term_agent_category','7'),(2100,546,'slide_template',''),(2101,549,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2102,549,'_edit_lock','1600543223:1'),(2103,549,'_thumbnail_id','592'),(2104,549,'_edit_last','1'),(2105,549,'fave_agent_position','Licensed Agent'),(2106,549,'fave_agent_company','Lantern Realty and Development'),(2107,549,'fave_agent_website','https://lantern-realty.com/'),(2108,549,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2110,549,'fave_agent_agencies','45'),(2111,549,'_primary_term_agent_category','7'),(2112,549,'slide_template',''),(2113,551,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2114,551,'_edit_lock','1600543884:1'),(2115,551,'_thumbnail_id','627'),(2116,551,'_edit_last','1'),(2117,551,'fave_agent_position','Licensed Agent'),(2118,551,'fave_agent_company','Lantern Realty and Development'),(2119,551,'fave_agent_website','https://lantern-realty.com/'),(2120,551,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2122,551,'fave_agent_agencies','45'),(2123,551,'_primary_term_agent_category','7'),(2124,551,'slide_template',''),(2125,553,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2126,553,'_edit_lock','1600543931:1'),(2127,553,'_thumbnail_id','572'),(2128,553,'_edit_last','1'),(2129,553,'fave_agent_position','Licensed Agent'),(2130,553,'fave_agent_company','Lantern Realty and Development'),(2131,553,'fave_agent_website','https://lantern-realty.com/'),(2132,553,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2134,553,'fave_agent_agencies','45'),(2135,553,'_primary_term_agent_category','7'),(2136,553,'slide_template',''),(2137,555,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2138,555,'_edit_lock','1600544193:1'),(2139,556,'_wp_attached_file','2019/11/Hosanna_Hill.jpeg'),(2140,556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2729;s:6:\"height\";i:2703;s:4:\"file\";s:25:\"2019/11/Hosanna_Hill.jpeg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-768x761.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Hosanna_Hill-1024x1014.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1014;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Hosanna_Hill-1170x600.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-570x340.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-810x430.jpeg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Hosanna_Hill-1170x738.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Hosanna_Hill-1440x610.jpeg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-350x347.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Hosanna_Hill-485x480.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:480;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:\"1573817705\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2141,555,'_thumbnail_id','556'),(2142,555,'_edit_last','1'),(2143,555,'fave_agent_email','hill.hosanna@gmail.com'),(2144,555,'fave_agent_position','Licensed Agent'),(2145,555,'fave_agent_company','Lantern Realty and Development'),(2146,555,'fave_agent_mobile','336-317-8050'),(2147,555,'fave_agent_website','https://lantern-realty.com/'),(2148,555,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2149,555,'fave_agent_agencies','45'),(2150,555,'_primary_term_agent_category','7'),(2151,555,'slide_template',''),(2152,558,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2153,558,'_edit_lock','1600544429:1'),(2154,558,'_thumbnail_id','591'),(2155,558,'_edit_last','1'),(2156,558,'fave_agent_position','Licensed Agent'),(2157,558,'fave_agent_company','Lantern Realty and Development'),(2158,558,'fave_agent_website','https://lantern-realty.com/'),(2159,558,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2161,558,'fave_agent_agencies','758'),(2162,558,'_primary_term_agent_category','4'),(2163,558,'slide_template',''),(2164,560,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2165,560,'_edit_lock','1600546423:1'),(2166,561,'_wp_attached_file','2019/11/Kimberly_Trask.jpg'),(2167,561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3190;s:6:\"height\";i:3072;s:4:\"file\";s:26:\"2019/11/Kimberly_Trask.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-768x740.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Kimberly_Trask-1024x986.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-150x144.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Kimberly_Trask-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Kimberly_Trask-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Kimberly_Trask-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-350x337.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Kimberly_Trask-498x480.jpg\";s:5:\"width\";i:498;s:6:\"height\";i:480;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:\"1573817819\";s:9:\"copyright\";s:24:\"Rachel Wells Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2168,560,'_thumbnail_id','561'),(2169,560,'_edit_last','1'),(2170,560,'fave_agent_email','kimberlyktrask@gmail.com'),(2171,560,'fave_agent_position','Licensed Agent'),(2172,560,'fave_agent_company','Lantern Realty and Development'),(2173,560,'fave_agent_mobile','336-906-0848'),(2174,560,'fave_agent_website','https://lantern-realty.com/'),(2175,560,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3391,560,'fave_agent_logo','22'),(2177,560,'fave_agent_agencies','45'),(2178,560,'_primary_term_agent_category','7'),(2179,560,'slide_template',''),(2180,563,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2181,563,'_edit_lock','1656029205:1'),(2182,563,'_thumbnail_id','2333'),(2183,563,'_edit_last','1'),(2184,563,'fave_agent_position','Licensed Agent'),(2185,563,'fave_agent_company','Lantern Realty and Development'),(2186,563,'fave_agent_website','https://lantern-realty.com/'),(2187,563,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2189,563,'fave_agent_agencies','45'),(2190,563,'_primary_term_agent_category','7'),(2192,434,'fave_agent_email','ricksellsnc@gmail.com'),(2193,434,'fave_agent_mobile','704-491-2458'),(2195,442,'fave_agent_email','crtbroker@gmail.com'),(2196,442,'fave_agent_mobile','704-701-0129'),(2198,549,'fave_agent_email','ecaudill12@gmail.com'),(2199,549,'fave_agent_mobile','704-791-7012'),(2201,551,'fave_agent_email','ygarciarealty@gmail.com'),(2202,551,'fave_agent_mobile','704-907-9573'),(2204,553,'fave_agent_email','1cathyhager@gmail.com'),(2205,553,'fave_agent_mobile','980-521-4429'),(2207,558,'fave_agent_email','dmiltzrealtor@gmail.com'),(2208,558,'fave_agent_mobile','704-634-6289'),(2211,563,'fave_agent_email','briannewatsonrealtor@gmail.com'),(2212,563,'fave_agent_mobile','704-791-3272'),(2214,565,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2215,565,'_edit_lock','1613657579:1'),(2216,566,'_wp_attached_file','2019/11/April_Bird.jpg'),(2217,566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:434;s:6:\"height\";i:444;s:4:\"file\";s:22:\"2019/11/April_Bird.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"April_Bird-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"April_Bird-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"April_Bird-147x150.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:22:\"April_Bird-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:22:\"April_Bird-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:22:\"April_Bird-434x340.jpg\";s:5:\"width\";i:434;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:22:\"April_Bird-434x430.jpg\";s:5:\"width\";i:434;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:22:\"April_Bird-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:22:\"April_Bird-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:22:\"April_Bird-350x358.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:358;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:\"1573817742\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2218,565,'_thumbnail_id','566'),(2219,565,'_edit_last','1'),(2220,565,'fave_agent_email','abirdhomes@gmail.com'),(2221,565,'fave_agent_position','Licensed Agent'),(2222,565,'fave_agent_company','Lantern Realty and Development'),(2223,565,'fave_agent_mobile','901-569-3161'),(2224,565,'fave_agent_website','https://lantern-realty.com/'),(2225,565,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9256,565,'fave_agent_logo','22'),(2227,565,'fave_agent_agencies','760'),(2228,565,'_primary_term_agent_category','7'),(2229,565,'slide_template',''),(2297,589,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2505;s:6:\"height\";i:2560;s:4:\"file\";s:33:\"2019/11/Brianne_Watson-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-294x300.jpg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Brianne_Watson-1002x1024.jpg\";s:5:\"width\";i:1002;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-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:26:\"Brianne_Watson-768x785.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"Brianne_Watson-1503x1536.jpg\";s:5:\"width\";i:1503;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"Brianne_Watson-2004x2048.jpg\";s:5:\"width\";i:2004;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-147x150.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Brianne_Watson-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Brianne_Watson-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Brianne_Watson-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-350x358.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-470x480.jpg\";s:5:\"width\";i:470;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:26:\"Brianne_Watson-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"Brianne_Watson.jpg\";}'),(2234,572,'_wp_attached_file','2019/11/Cathy_Hager.jpg'),(2235,572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:842;s:6:\"height\";i:887;s:4:\"file\";s:23:\"2019/11/Cathy_Hager.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-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:23:\"Cathy_Hager-768x809.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:809;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-142x150.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-842x600.jpg\";s:5:\"width\";i:842;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-842x738.jpg\";s:5:\"width\";i:842;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-842x610.jpg\";s:5:\"width\";i:842;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-350x369.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Cathy_Hager-456x480.jpg\";s:5:\"width\";i:456;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446310323\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:16:\"0.00588235294118\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2236,573,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2237,573,'_edit_lock','1600543917:1'),(2238,574,'_wp_attached_file','2020/01/Deborah_Griffin.jpg'),(2239,574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:755;s:6:\"height\";i:710;s:4:\"file\";s:27:\"2020/01/Deborah_Griffin.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-150x141.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-755x600.jpg\";s:5:\"width\";i:755;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-755x430.jpg\";s:5:\"width\";i:755;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-755x610.jpg\";s:5:\"width\";i:755;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-350x329.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:329;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Deborah_Griffin-510x480.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:480;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:\"1579205686\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2240,573,'_thumbnail_id','574'),(2241,573,'_edit_last','1'),(2242,573,'fave_agent_email','deborahg142@gmail.com'),(2243,573,'fave_agent_position','Licensed Agent'),(2244,573,'fave_agent_company','Lantern Realty and Development'),(2245,573,'fave_agent_mobile','980-428-2462'),(2246,573,'fave_agent_website','https://lantern-realty.com/'),(2247,573,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2248,573,'fave_agent_agencies','757'),(2249,573,'_primary_term_agent_category','7'),(2250,573,'slide_template',''),(2251,576,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2252,576,'_edit_lock','1653533733:1'),(2253,577,'_wp_attached_file','2020/01/Marguerite_Keller.jpg'),(2254,577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:478;s:6:\"height\";i:578;s:4:\"file\";s:29:\"2020/01/Marguerite_Keller.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-248x300.jpg\";s:5:\"width\";i:248;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-124x150.jpg\";s:5:\"width\";i:124;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-478x340.jpg\";s:5:\"width\";i:478;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-478x430.jpg\";s:5:\"width\";i:478;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-350x423.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:29:\"Marguerite_Keller-397x480.jpg\";s:5:\"width\";i:397;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS-1Ds Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"47\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2255,576,'_thumbnail_id','577'),(2256,576,'_edit_last','1'),(2257,576,'fave_agent_email','margkellerhomes@gmail.com'),(2258,576,'fave_agent_position','Licensed Agent'),(2259,576,'fave_agent_company','Lantern Realty and Development'),(2260,576,'fave_agent_mobile','704-245-2739'),(2261,576,'fave_agent_website','https://lantern-realty.com/'),(2262,576,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2263,576,'fave_agent_agencies','757'),(2264,576,'_primary_term_agent_category','7'),(14882,2686,'_wp_attached_file','2022/05/AJHeadshots-1-1-scaled.jpg'),(2266,579,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2267,579,'_edit_lock','1600546482:1'),(2268,580,'_wp_attached_file','2020/01/Melissa_Yates.png'),(2269,580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2385;s:6:\"height\";i:2228;s:4:\"file\";s:25:\"2020/01/Melissa_Yates.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-300x280.png\";s:5:\"width\";i:300;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Melissa_Yates-1024x957.png\";s:5:\"width\";i:1024;s:6:\"height\";i:957;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-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:25:\"Melissa_Yates-768x717.png\";s:5:\"width\";i:768;s:6:\"height\";i:717;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Melissa_Yates-1536x1435.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1435;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"Melissa_Yates-2048x1913.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1913;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Melissa_Yates-1170x600.png\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-385x258.png\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-380x280.png\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-570x340.png\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-810x430.png\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Melissa_Yates-1170x738.png\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Melissa_Yates-1440x610.png\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-350x327.png\";s:5:\"width\";i:350;s:6:\"height\";i:327;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Melissa_Yates-514x480.png\";s:5:\"width\";i:514;s:6:\"height\";i:480;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:{}}}'),(2270,579,'_thumbnail_id','580'),(2271,579,'_edit_last','1'),(2283,584,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2284,584,'_edit_last','1'),(2285,584,'_edit_lock','1583278856:1'),(2286,584,'slide_template','default'),(2287,584,'_tmm_head','a:1:{i:0;a:15:{s:14:\"_tmm_firstname\";s:4:\"John\";s:13:\"_tmm_lastname\";s:3:\"Doe\";s:8:\"_tmm_job\";s:16:\"Licensed Realtor\";s:9:\"_tmm_desc\";s:22:\"<p>Full Length Bio</p>\";s:10:\"_tmm_photo\";s:73:\"https://lantern-realty.com/wp-content/uploads/2020/01/Deborah_Griffin.jpg\";s:14:\"_tmm_photo_url\";s:0:\"\";s:13:\"_tmm_sc_type1\";s:7:\"website\";s:14:\"_tmm_sc_title1\";s:15:\"Lantern Website\";s:12:\"_tmm_sc_url1\";s:22:\"www.lantern-realty.com\";s:13:\"_tmm_sc_type2\";s:8:\"facebook\";s:14:\"_tmm_sc_title2\";s:26:\"facebook.com/lanternrealty\";s:12:\"_tmm_sc_url2\";s:0:\"\";s:13:\"_tmm_sc_type3\";s:5:\"phone\";s:14:\"_tmm_sc_title3\";s:12:\"555-555-5555\";s:12:\"_tmm_sc_url3\";s:0:\"\";}}'),(2273,579,'fave_agent_email','melissayates4u@gmail.com'),(2274,579,'fave_agent_position','Licensed Agent'),(2275,579,'fave_agent_company','Lantern Realty and Development'),(2276,579,'fave_agent_mobile','704-239-3835'),(2277,579,'fave_agent_website','https://lantern-realty.com/'),(2278,579,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2279,579,'fave_agent_agencies','757'),(2280,579,'_primary_term_agent_category','4'),(2281,579,'slide_template',''),(2288,584,'_tmm_color','#1e73be'),(2289,584,'_tmm_columns','4'),(2290,584,'_tmm_original_font','yes'),(2291,584,'_tmm_piclink_beh','same'),(2625,661,'fave_adv_search_pos','under_menu'),(2296,589,'_wp_attached_file','2019/11/Brianne_Watson-scaled.jpg'),(2298,591,'_wp_attached_file','2019/11/Deanna_Miltz.jpg'),(2299,591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1365;s:6:\"height\";i:1365;s:4:\"file\";s:24:\"2019/11/Deanna_Miltz.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Deanna_Miltz-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-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:24:\"Deanna_Miltz-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"Deanna_Miltz-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"Deanna_Miltz-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"Deanna_Miltz-1365x610.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:24:\"Deanna_Miltz-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2300,592,'_wp_attached_file','2019/11/Evonne_Caudill.jpg'),(2301,592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:909;s:6:\"height\";i:1076;s:4:\"file\";s:26:\"2019/11/Evonne_Caudill.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-253x300.jpg\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Evonne_Caudill-865x1024.jpg\";s:5:\"width\";i:865;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-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:26:\"Evonne_Caudill-768x909.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:909;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-127x150.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-909x600.jpg\";s:5:\"width\";i:909;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-909x738.jpg\";s:5:\"width\";i:909;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-909x610.jpg\";s:5:\"width\";i:909;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-350x414.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-406x480.jpg\";s:5:\"width\";i:406;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:26:\"Evonne_Caudill-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G920V\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1539456996\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"2.2\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:15:\"0.0416666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2457,627,'_wp_attached_file','2019/11/Yira_Garcia.jpg'),(2458,627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:506;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2019/11/Yira_Garcia.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-506x340.jpg\";s:5:\"width\";i:506;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-506x430.jpg\";s:5:\"width\";i:506;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-350x346.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-486x480.jpg\";s:5:\"width\";i:486;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:23:\"Yira_Garcia-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:{}}}'),(3316,551,'fave_agent_logo','28'),(3263,549,'fave_agent_logo','22'),(3265,598,'fave_agent_logo','22'),(5731,601,'fave_agent_logo','22'),(5726,604,'fave_agent_logo','22'),(3322,553,'fave_agent_logo','22'),(3320,573,'fave_agent_logo','22'),(3336,555,'fave_agent_logo','22'),(3705,608,'fave_agent_logo','22'),(14881,576,'fave_agent_logo','22'),(3356,558,'fave_agent_logo','22'),(2306,596,'_wp_attached_file','2020/04/Shelly_Arledge.jpg'),(2307,596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:640;s:4:\"file\";s:26:\"2020/04/Shelly_Arledge.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-120x150.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-512x600.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-512x340.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-512x430.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-512x610.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-350x438.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-384x480.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:26:\"Shelly_Arledge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1552403622\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2318,598,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2319,598,'_edit_lock','1600543242:1'),(2320,599,'_wp_attached_file','2020/04/Jody_Clodfelter.jpg'),(2321,599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2007;s:6:\"height\";i:2070;s:4:\"file\";s:27:\"2020/04/Jody_Clodfelter.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-291x300.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Jody_Clodfelter-993x1024.jpg\";s:5:\"width\";i:993;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-768x792.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"Jody_Clodfelter-1489x1536.jpg\";s:5:\"width\";i:1489;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"Jody_Clodfelter-1986x2048.jpg\";s:5:\"width\";i:1986;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-145x150.jpg\";s:5:\"width\";i:145;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:28:\"Jody_Clodfelter-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:28:\"Jody_Clodfelter-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:28:\"Jody_Clodfelter-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-350x361.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-465x480.jpg\";s:5:\"width\";i:465;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:27:\"Jody_Clodfelter-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:\"1587996388\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2322,598,'_thumbnail_id','599'),(2323,598,'_edit_last','1'),(2324,598,'fave_agent_email','jodyc1972@gmail.com'),(2325,598,'fave_agent_position','Licensed Agent'),(2326,598,'fave_agent_company','Lantern Realty and Development'),(2327,598,'fave_agent_mobile','704-438-2190'),(2328,598,'fave_agent_website','https://lantern-realty.com/'),(2329,598,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2330,598,'fave_agent_agencies','759'),(2331,598,'_primary_term_agent_category','7'),(2332,598,'slide_template',''),(2334,601,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2335,601,'_edit_lock','1602979479:1'),(2336,602,'_wp_attached_file','2020/04/Amanda_Cody.jpg'),(2337,602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:487;s:6:\"height\";i:449;s:4:\"file\";s:23:\"2020/04/Amanda_Cody.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-300x277.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-150x138.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-487x340.jpg\";s:5:\"width\";i:487;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-487x430.jpg\";s:5:\"width\";i:487;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-350x323.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:23:\"Amanda_Cody-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:\"1587996870\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2338,601,'_thumbnail_id','602'),(2339,601,'_edit_last','1'),(2340,601,'fave_agent_email','amandaearnhardt@yahoo.com'),(2341,601,'fave_agent_position','Licensed Agent'),(2342,601,'fave_agent_company','Lantern Realty and Development'),(2343,601,'fave_agent_mobile','980-581-1399'),(2344,601,'fave_agent_website','https://lantern-realty.com/'),(2345,601,'fave_agent_facebook','https://www.facebook.com/amandacodyrealestate/'),(2346,601,'fave_agent_agencies','759'),(2347,601,'_primary_term_agent_category','7'),(2348,601,'slide_template',''),(2349,604,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2350,604,'_edit_lock','1602978111:1'),(2351,605,'_wp_attached_file','2020/04/Mike_Fullerton-scaled.jpg'),(2352,605,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2530;s:4:\"file\";s:33:\"2020/04/Mike_Fullerton-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1024x1012.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1012;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-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:26:\"Mike_Fullerton-768x759.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:759;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1536x1518.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1518;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-2048x2024.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:27:\"Mike_Fullerton-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:27:\"Mike_Fullerton-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:27:\"Mike_Fullerton-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-350x346.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-486x480.jpg\";s:5:\"width\";i:486;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:26:\"Mike_Fullerton-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:\"1587996736\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}s:14:\"original_image\";s:18:\"Mike_Fullerton.jpg\";}'),(2353,604,'_thumbnail_id','1127'),(2354,604,'_edit_last','1'),(2355,604,'fave_agent_email','mikefullerton72@gmail.com'),(2356,604,'fave_agent_position','Licensed Agent'),(2357,604,'fave_agent_company','Lantern Realty and Development'),(2358,604,'fave_agent_mobile','980-318-4961'),(2359,604,'fave_agent_website','https://lantern-realty.com/'),(2360,604,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2361,604,'fave_agent_agencies','759'),(2362,604,'_primary_term_agent_category','7'),(2363,604,'slide_template',''),(2364,608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2365,608,'_edit_lock','1613657662:1'),(2366,609,'_wp_attached_file','2020/04/Will_Hedrick.jpeg'),(2367,609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:436;s:6:\"height\";i:456;s:4:\"file\";s:25:\"2020/04/Will_Hedrick.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-287x300.jpeg\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-143x150.jpeg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-385x258.jpeg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-380x280.jpeg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-436x340.jpeg\";s:5:\"width\";i:436;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-436x430.jpeg\";s:5:\"width\";i:436;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-350x350.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-150x110.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-350x366.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:25:\"Will_Hedrick-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"tyleremma\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:664:\"{\"total_effects_actions\":0,\"total_draw_time\":321621,\"layers_used\":2,\"effects_tried\":0,\"total_draw_actions\":0,\"total_editor_actions\":{\"border\":0,\"frame\":0,\"mask\":0,\"lensflare\":0,\"clipart\":0,\"text\":0,\"square_fit\":0,\"shape_mask\":0,\"callout\":0},\"effects_applied\":0,\"uid\":\"96B45E87-F0FC-45A6-BC29-33A7951ADC1F_1587503546920\",\"width\":993,\"photos_added\":0,\"total_effects_time\":0,\"tools_used\":{\"tilt_shift\":0,\"resize\":0,\"adjust\":0,\"curves\":0,\"motion\":0,\"perspective\":0,\"clone\":0,\"crop\":0,\"enhance\":0,\"selection\":0,\"free_crop\":0,\"flip_rotate\":0,\"shape_crop\":0,\"stretch\":0},\"origin\":\"gallery\",\"height\":1497,\"subsource\":\"done_button\",\"total_editor_time\":325,\"brushes_used\":1}\";s:17:\"created_timestamp\";s:10:\"1571684951\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2368,608,'_thumbnail_id','609'),(2369,608,'_edit_last','1'),(2370,608,'fave_agent_email','will@thewillhedrick.com'),(2371,608,'fave_agent_position','Licensed Agent'),(2372,608,'fave_agent_company','Lantern Realty and Development'),(2373,608,'fave_agent_mobile','704-773-9204'),(2374,608,'fave_agent_website','https://lantern-realty.com/'),(2375,608,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2376,608,'fave_agent_agencies','45'),(2377,608,'_primary_term_agent_category','7'),(2378,608,'slide_template',''),(2381,612,'_wp_attached_file','2020/04/Ashley_Hines.jpg'),(2382,612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:990;s:6:\"height\";i:1412;s:4:\"file\";s:24:\"2020/04/Ashley_Hines.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-210x300.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Ashley_Hines-718x1024.jpg\";s:5:\"width\";i:718;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-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:25:\"Ashley_Hines-768x1095.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1095;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-105x150.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-990x600.jpg\";s:5:\"width\";i:990;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-990x738.jpg\";s:5:\"width\";i:990;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-990x610.jpg\";s:5:\"width\";i:990;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-350x499.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-337x480.jpg\";s:5:\"width\";i:337;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:24:\"Ashley_Hines-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:{}}}'),(8826,1465,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5024834949772707393123027941328473389148712158203125;s:5:\"bytes\";i:8491;s:11:\"size_before\";i:565131;s:10:\"size_after\";i:556640;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8491;s:11:\"size_before\";i:88011;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79520;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(2396,615,'_wp_attached_file','2020/04/MaClay_Miller.jpg'),(2397,615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:817;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2020/04/MaClay_Miller.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-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:25:\"MaClay_Miller-768x856.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:856;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-817x600.jpg\";s:5:\"width\";i:817;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-817x738.jpg\";s:5:\"width\";i:817;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-817x610.jpg\";s:5:\"width\";i:817;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-350x390.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-430x480.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:25:\"MaClay_Miller-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:10:\"iPhone10,2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2409,617,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2410,617,'_edit_lock','1600546464:1'),(2411,618,'_wp_attached_file','2020/04/Susan_Starnes-scaled.jpg'),(2412,618,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2020/04/Susan_Starnes-scaled.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Susan_Starnes-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-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:26:\"Susan_Starnes-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Susan_Starnes-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"Susan_Starnes-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:26:\"Susan_Starnes-1170x600.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:26:\"Susan_Starnes-1170x738.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:26:\"Susan_Starnes-1440x610.jpg\";s:5:\"width\";i:1440;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-320x480.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:25:\"Susan_Starnes-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531338810\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"Susan_Starnes.jpg\";}'),(2413,617,'_thumbnail_id','618'),(2414,617,'_edit_last','1'),(2415,617,'fave_agent_email','susansellsnchomes@gmail.com'),(2416,617,'fave_agent_position','Licensed Agent'),(2417,617,'fave_agent_company','Lantern Realty and Development'),(2418,617,'fave_agent_mobile','704-305-0040'),(2419,617,'fave_agent_website','https://lantern-realty.com/'),(2420,617,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2421,617,'fave_agent_agencies','758'),(2422,617,'_primary_term_agent_category','7'),(2423,617,'slide_template',''),(2424,620,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2425,620,'_edit_lock','1600546498:1'),(2426,621,'_wp_attached_file','2020/04/Tricia_Strickland.jpg'),(2427,621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:387;s:6:\"height\";i:382;s:4:\"file\";s:29:\"2020/04/Tricia_Strickland.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-387x340.jpg\";s:5:\"width\";i:387;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Tricia_Strickland-350x345.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:345;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:\"1568978716\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2428,620,'_thumbnail_id','621'),(2429,620,'_edit_last','1'),(2430,620,'fave_agent_email','tricia.strickland927@gmail.com'),(2431,620,'fave_agent_position','Licensed Agent'),(2432,620,'fave_agent_company','Lantern Realty and Development'),(2433,620,'fave_agent_mobile','704-791-7314'),(2434,620,'fave_agent_website','https://lantern-realty.com/'),(2435,620,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2436,620,'fave_agent_agencies','45'),(2437,620,'_primary_term_agent_category','7'),(2438,620,'slide_template',''),(2439,623,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2440,623,'_edit_lock','1641510586:1'),(2441,624,'_wp_attached_file','2020/04/Min_Zhang.jpg'),(2442,624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:719;s:4:\"file\";s:21:\"2020/04/Min_Zhang.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-720x600.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-720x430.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-720x610.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-481x480.jpg\";s:5:\"width\";i:481;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"team-thumb\";a:4:{s:4:\"file\";s:21:\"Min_Zhang-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:25:\"Canon PowerShot SD1300 IS\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515598156\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:6:\"17.275\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2443,623,'_thumbnail_id','624'),(2444,623,'_edit_last','1'),(2445,623,'fave_agent_email','realtymin77@gmail.com'),(2446,623,'fave_agent_position','Licensed Agent'),(2447,623,'fave_agent_company','Lantern Realty and Development'),(2448,623,'fave_agent_mobile','319-471-1622'),(2449,623,'fave_agent_website','https://lantern-realty.com/'),(2450,623,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(2451,623,'fave_agent_agencies','758'),(2452,623,'_primary_term_agent_category','7'),(11817,2205,'_wp_attached_file','2022/01/headshot.jpg'),(2624,661,'fave_adv_search','hide'),(2623,661,'fave_adv_search_enable','global'),(2622,661,'fave_main_menu_trans','no'),(2621,661,'fave_page_header_video_overlay','yes'),(2620,661,'fave_page_header_image_opacity','0.5'),(2619,661,'fave_page_header_search','0'),(2618,661,'fave_header_full_screen_type','screen_fix'),(2617,661,'fave_header_full_screen','0'),(2615,661,'fave_page_background','yes'),(2614,661,'fave_page_sidebar','right_sidebar'),(2613,661,'fave_page_breadcrumb','show'),(2612,661,'fave_page_title','show'),(2611,661,'fave_agent_order','ASC'),(2610,661,'fave_agent_orderby','None'),(2609,661,'fave_agency_order','ASC'),(2608,661,'fave_agency_orderby','None'),(2607,661,'fave_properties_sort_halfmap','d_date'),(2604,661,'fave_prop_no','9'),(2605,661,'fave_listings_tabs','enable'),(2606,661,'fave_prop_no_halfmap','9'),(2603,661,'fave_featured_prop_no','4'),(2602,661,'fave_properties_sort','d_date'),(2601,661,'fave_default_view','list_view'),(2600,661,'_edit_last','1'),(2599,661,'_edit_lock','1600541694:1'),(2598,661,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5727,411,'fave_agent_visible','0'),(3106,744,'_edit_last','1'),(2504,645,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2505,645,'_edit_lock','1653529133:1'),(2506,646,'_wp_attached_file','2020/05/Ashley-Ferlauto.jpg'),(2507,646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:633;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2020/05/Ashley-Ferlauto.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-150x118.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-633x430.jpg\";s:5:\"width\";i:633;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-350x276.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:27:\"Ashley-Ferlauto-608x480.jpg\";s:5:\"width\";i:608;s:6:\"height\";i:480;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:{}}}'),(2508,645,'_thumbnail_id','646'),(2509,645,'_edit_last','1'),(2510,645,'fave_agent_email','ashleyferlauto@gmail.com'),(2511,645,'fave_agent_position','Principal Broker - Tennessee'),(2512,645,'fave_agent_company','Lantern Realty and Development'),(2513,645,'fave_agent_mobile','980-333-8085'),(2514,645,'fave_agent_website','lantern-realty.com'),(2515,645,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(14878,645,'fave_agent_logo','28'),(2517,645,'fave_agent_agencies','45'),(2518,645,'_primary_term_agent_category','7'),(14876,645,'fave_agent_visible','0'),(2521,649,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2522,650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2523,651,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2524,651,'user_registration_form_setting_login_options','admin_approval'),(2525,651,'user_registration_form_setting_default_user_role','houzez_agent'),(2526,651,'user_registration_form_setting_enable_strong_password',''),(2527,651,'user_registration_form_setting_minimum_password_strength','3'),(2528,651,'user_registration_form_setting_redirect_options',''),(2529,651,'user_registration_form_setting_form_submit_class',''),(2530,651,'user_registration_form_setting_form_submit_label','Submit'),(2531,651,'user_registration_form_setting_enable_recaptcha_support',''),(2532,651,'user_registration_form_template','Rounded Edge'),(2533,651,'user_registration_form_custom_class',''),(2534,651,'user_registration_form_row_ids','[\"0\"]'),(2535,650,'_edit_lock','1602388792:1'),(2616,661,'fave_header_type','none'),(2539,655,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2540,655,'_um_custom_fields','a:6:{s:10:\"user_login\";a:15:{s:5:\"title\";s:8:\"Username\";s:7:\"metakey\";s:10:\"user_login\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:8:\"Username\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:15:\"unique_username\";s:9:\"min_chars\";i:3;s:9:\"max_chars\";i:24;s:8:\"position\";s:1:\"1\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:10:\"user_email\";a:13:{s:5:\"title\";s:14:\"E-mail Address\";s:7:\"metakey\";s:10:\"user_email\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:14:\"E-mail Address\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"validate\";s:12:\"unique_email\";s:8:\"position\";s:1:\"4\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";s:1:\"5\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:10:\"first_name\";a:12:{s:5:\"title\";s:10:\"First Name\";s:7:\"metakey\";s:10:\"first_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"First Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";s:1:\"2\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"last_name\";a:12:{s:5:\"title\";s:9:\"Last Name\";s:7:\"metakey\";s:9:\"last_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Last Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";s:1:\"3\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(2541,655,'_um_mode','register'),(2542,655,'_um_core','register'),(2543,655,'_um_register_use_custom_settings','0'),(2544,656,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2545,656,'_um_custom_fields','a:3:{s:8:\"username\";a:13:{s:5:\"title\";s:18:\"Username or E-mail\";s:7:\"metakey\";s:8:\"username\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Username or E-mail\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:24:\"unique_username_or_email\";s:8:\"position\";s:1:\"1\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";s:1:\"2\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(2546,656,'_um_mode','login'),(2547,656,'_um_core','login'),(2548,656,'_um_login_use_custom_settings','0'),(2549,657,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2550,657,'_um_custom_fields','a:1:{s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(2551,657,'_um_mode','profile'),(2552,657,'_um_core','profile'),(2553,657,'_um_profile_use_custom_settings','0'),(2554,658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2555,658,'_um_core','members'),(2556,658,'_um_template','members'),(2557,658,'_um_mode','directory'),(2558,658,'_um_view_types','a:1:{i:0;s:4:\"grid\";}'),(2559,658,'_um_default_view','grid'),(2560,658,'_um_roles','a:0:{}'),(2561,658,'_um_has_profile_photo','0'),(2562,658,'_um_has_cover_photo','0'),(2563,658,'_um_show_these_users',''),(2564,658,'_um_sortby','user_registered_desc'),(2565,658,'_um_sortby_custom',''),(2566,658,'_um_sortby_custom_label',''),(2567,658,'_um_enable_sorting','0'),(2568,658,'_um_sorting_fields','a:0:{}'),(2569,658,'_um_profile_photo','1'),(2570,658,'_um_cover_photos','1'),(2571,658,'_um_show_name','1'),(2572,658,'_um_show_tagline','0'),(2573,658,'_um_tagline_fields','a:0:{}'),(2574,658,'_um_show_userinfo','0'),(2575,658,'_um_reveal_fields','a:0:{}'),(2576,658,'_um_show_social','0'),(2577,658,'_um_userinfo_animate','1'),(2578,658,'_um_search','0'),(2579,658,'_um_roles_can_search','a:0:{}'),(2580,658,'_um_filters','0'),(2581,658,'_um_roles_can_filter','a:0:{}'),(2582,658,'_um_search_fields','a:0:{}'),(2583,658,'_um_filters_expanded','0'),(2584,658,'_um_filters_is_collapsible','1'),(2585,658,'_um_search_filters','a:0:{}'),(2586,658,'_um_must_search','0'),(2587,658,'_um_max_users',''),(2588,658,'_um_profiles_per_page','12'),(2589,658,'_um_profiles_per_page_mobile','6'),(2590,658,'_um_directory_header','{total_users} Members'),(2591,658,'_um_directory_header_single','{total_users} Member'),(2592,658,'_um_directory_no_users','We are sorry. We cannot find any users who match your search criteria.'),(2593,1,'_um_core','pages_settings'),(2594,2,'_um_core','password-reset'),(2595,649,'_um_core','account'),(2626,661,'slide_template','default'),(2627,661,'_wpb_vc_js_status','false'),(2628,661,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(2629,663,'_wp_attached_file','2020/05/Lantern-Main-Office-Kannapolis.jpg'),(2630,663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:452;s:4:\"file\";s:42:\"2020/05/Lantern-Main-Office-Kannapolis.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-300x234.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-150x117.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-580x430.jpg\";s:5:\"width\";i:580;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:42:\"Lantern-Main-Office-Kannapolis-350x273.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:273;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:\"1590594944\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2633,674,'_wp_attached_file','2020/05/Lantern-Salisbury-Office.jpg'),(2634,674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:809;s:4:\"file\";s:36:\"2020/05/Lantern-Salisbury-Office.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-133x150.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"houzez-single-big-size\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-720x600.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:27:\"houzez-property-thumb-image\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-385x258.jpg\";s:5:\"width\";i:385;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-thumb-image-v2\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-380x280.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image570_340\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-570x340.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"houzez-property-detail-gallery\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-720x430.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-imageSize1170_738\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-720x738.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:738;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-prop_image1440_610\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-720x610.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-image350_350\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"houzez-widget-prop\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-350x393.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"houzez-toparea-v5\";a:4:{s:4:\"file\";s:36:\"Lantern-Salisbury-Office-427x480.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:480;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:\"1590742077\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2635,686,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2636,686,'_menu_item_type','custom'),(2637,686,'_menu_item_menu_item_parent','0'),(2638,686,'_menu_item_object_id','686'),(2639,686,'_menu_item_object','custom'),(2640,686,'_menu_item_target',''),(2641,686,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2642,686,'_menu_item_xfn',''),(2643,686,'_menu_item_url','/'),(2645,687,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2646,687,'_menu_item_type','custom'),(2647,687,'_menu_item_menu_item_parent','0'),(2648,687,'_menu_item_object_id','687'),(2649,687,'_menu_item_object','custom'),(2650,687,'_menu_item_target',''),(2651,687,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2652,687,'_menu_item_xfn',''),(2653,687,'_menu_item_url','/lantern-listings/'),(2676,690,'_menu_item_type','custom'),(2655,688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2656,688,'_menu_item_type','custom'),(2657,688,'_menu_item_menu_item_parent','687'),(2658,688,'_menu_item_object_id','688'),(2659,688,'_menu_item_object','custom'),(2660,688,'_menu_item_target',''),(2661,688,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2662,688,'_menu_item_xfn',''),(2663,688,'_menu_item_url','/lantern-listings/'),(2665,689,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2666,689,'_menu_item_type','custom'),(2667,689,'_menu_item_menu_item_parent','687'),(2668,689,'_menu_item_object_id','689'),(2669,689,'_menu_item_object','custom'),(2670,689,'_menu_item_target',''),(2671,689,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2672,689,'_menu_item_xfn',''),(2673,689,'_menu_item_url','/recently-sold/'),(2675,690,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2677,690,'_menu_item_menu_item_parent','0'),(2678,690,'_menu_item_object_id','690'),(2679,690,'_menu_item_object','custom'),(2680,690,'_menu_item_target',''),(2681,690,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2682,690,'_menu_item_xfn',''),(2683,690,'_menu_item_url','#'),(2761,698,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2685,691,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2686,691,'_menu_item_type','custom'),(2687,691,'_menu_item_menu_item_parent','690'),(2688,691,'_menu_item_object_id','691'),(2689,691,'_menu_item_object','custom'),(2690,691,'_menu_item_target',''),(2691,691,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2692,691,'_menu_item_xfn',''),(2693,691,'_menu_item_url','/homes-for-sale-search/'),(2760,698,'_menu_item_target',''),(2695,692,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2696,692,'_menu_item_type','custom'),(2697,692,'_menu_item_menu_item_parent','690'),(2698,692,'_menu_item_object_id','692'),(2699,692,'_menu_item_object','custom'),(2700,692,'_menu_item_target',''),(2701,692,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2702,692,'_menu_item_xfn',''),(2703,692,'_menu_item_url','#'),(2759,698,'_menu_item_object','custom'),(2705,693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2706,693,'_menu_item_type','custom'),(2707,693,'_menu_item_menu_item_parent','692'),(2708,693,'_menu_item_object_id','693'),(2709,693,'_menu_item_object','custom'),(2710,693,'_menu_item_target',''),(2711,693,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2712,693,'_menu_item_xfn',''),(2713,693,'_menu_item_url','/listing-report/Kannapolis-Concord/815186'),(2758,698,'_menu_item_object_id','698'),(2715,694,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2716,694,'_menu_item_type','custom'),(2717,694,'_menu_item_menu_item_parent','692'),(2718,694,'_menu_item_object_id','694'),(2719,694,'_menu_item_object','custom'),(2720,694,'_menu_item_target',''),(2721,694,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2722,694,'_menu_item_xfn',''),(2723,694,'_menu_item_url','/listing-report/Salisbury/81519'),(2757,698,'_menu_item_menu_item_parent','0'),(2725,695,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2726,695,'_menu_item_type','custom'),(2727,695,'_menu_item_menu_item_parent','692'),(2728,695,'_menu_item_object_id','695'),(2729,695,'_menu_item_object','custom'),(2730,695,'_menu_item_target',''),(2731,695,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2732,695,'_menu_item_xfn',''),(2733,695,'_menu_item_url','/listing-report/Rockwell-Granite-Quarry-Gold-Hill/815189'),(2756,698,'_menu_item_type','custom'),(2735,696,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2736,696,'_menu_item_type','custom'),(2737,696,'_menu_item_menu_item_parent','692'),(2738,696,'_menu_item_object_id','696'),(2739,696,'_menu_item_object','custom'),(2740,696,'_menu_item_target',''),(2741,696,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2742,696,'_menu_item_xfn',''),(2743,696,'_menu_item_url','/listing-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187'),(2745,697,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2746,697,'_menu_item_type','custom'),(2747,697,'_menu_item_menu_item_parent','692'),(2748,697,'_menu_item_object_id','697'),(2749,697,'_menu_item_object','custom'),(2750,697,'_menu_item_target',''),(2751,697,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2752,697,'_menu_item_xfn',''),(2753,697,'_menu_item_url','/listing-report/Charlotte/815191'),(2755,698,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2762,698,'_menu_item_xfn',''),(2763,698,'_menu_item_url','#'),(2765,699,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2766,699,'_menu_item_type','custom'),(2767,699,'_menu_item_menu_item_parent','698'),(2768,699,'_menu_item_object_id','699'),(2769,699,'_menu_item_object','custom'),(2770,699,'_menu_item_target',''),(2771,699,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2772,699,'_menu_item_xfn',''),(2773,699,'_menu_item_url','/property-organizer-login/'),(2883,710,'_menu_item_url','/market-report/Salisbury/815190'),(2775,700,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2776,700,'_menu_item_type','custom'),(2777,700,'_menu_item_menu_item_parent','698'),(2778,700,'_menu_item_object_id','700'),(2779,700,'_menu_item_object','custom'),(2780,700,'_menu_item_target',''),(2781,700,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2782,700,'_menu_item_xfn',''),(2783,700,'_menu_item_url','/property-organizer-view-saved-search-list/'),(2882,710,'_menu_item_xfn',''),(2785,701,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2786,701,'_menu_item_type','custom'),(2787,701,'_menu_item_menu_item_parent','698'),(2788,701,'_menu_item_object_id','701'),(2789,701,'_menu_item_object','custom'),(2790,701,'_menu_item_target',''),(2791,701,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2792,701,'_menu_item_xfn',''),(2793,701,'_menu_item_url','/property-organizer-saved-listings/'),(2795,702,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2796,702,'_menu_item_type','post_type'),(2797,702,'_menu_item_menu_item_parent','698'),(2798,702,'_menu_item_object_id','237'),(2799,702,'_menu_item_object','page'),(2800,702,'_menu_item_target',''),(2801,702,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2802,702,'_menu_item_xfn',''),(2803,702,'_menu_item_url',''),(2881,710,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2805,703,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2806,703,'_menu_item_type','post_type'),(2807,703,'_menu_item_menu_item_parent','698'),(2808,703,'_menu_item_object_id','508'),(2809,703,'_menu_item_object','page'),(2810,703,'_menu_item_target',''),(2811,703,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2812,703,'_menu_item_xfn',''),(2813,703,'_menu_item_url',''),(2880,710,'_menu_item_target',''),(2815,704,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2816,704,'_menu_item_type','custom'),(2817,704,'_menu_item_menu_item_parent','698'),(2818,704,'_menu_item_object_id','704'),(2819,704,'_menu_item_object','custom'),(2820,704,'_menu_item_target',''),(2821,704,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2822,704,'_menu_item_xfn',''),(2823,704,'_menu_item_url','https://ryanivory.excellencebyarc.com/'),(2879,710,'_menu_item_object','custom'),(2825,705,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2826,705,'_menu_item_type','custom'),(2827,705,'_menu_item_menu_item_parent','0'),(2828,705,'_menu_item_object_id','705'),(2829,705,'_menu_item_object','custom'),(2830,705,'_menu_item_target',''),(2831,705,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2832,705,'_menu_item_xfn',''),(2833,705,'_menu_item_url','#'),(2878,710,'_menu_item_object_id','710'),(2835,706,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2836,706,'_menu_item_type','custom'),(2837,706,'_menu_item_menu_item_parent','705'),(2838,706,'_menu_item_object_id','706'),(2839,706,'_menu_item_object','custom'),(2840,706,'_menu_item_target',''),(2841,706,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2842,706,'_menu_item_xfn',''),(2843,706,'_menu_item_url','/valuation-form/'),(2877,710,'_menu_item_menu_item_parent','707'),(2845,707,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2846,707,'_menu_item_type','custom'),(2847,707,'_menu_item_menu_item_parent','705'),(2848,707,'_menu_item_object_id','707'),(2849,707,'_menu_item_object','custom'),(2850,707,'_menu_item_target',''),(2851,707,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2852,707,'_menu_item_xfn',''),(2853,707,'_menu_item_url','#'),(2876,710,'_menu_item_type','custom'),(2855,708,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2856,708,'_menu_item_type','custom'),(2857,708,'_menu_item_menu_item_parent','707'),(2858,708,'_menu_item_object_id','708'),(2859,708,'_menu_item_object','custom'),(2860,708,'_menu_item_target',''),(2861,708,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2862,708,'_menu_item_xfn',''),(2863,708,'_menu_item_url','/market-report/Kannapolis-Concord/815186'),(2865,709,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2866,709,'_menu_item_type','custom'),(2867,709,'_menu_item_menu_item_parent','707'),(2868,709,'_menu_item_object_id','709'),(2869,709,'_menu_item_object','custom'),(2870,709,'_menu_item_target',''),(2871,709,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2872,709,'_menu_item_xfn',''),(2873,709,'_menu_item_url','/market-report/Landis-China-Grove/815188'),(2875,710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2950,717,'_menu_item_target',''),(2885,711,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2886,711,'_menu_item_type','custom'),(2887,711,'_menu_item_menu_item_parent','707'),(2888,711,'_menu_item_object_id','711'),(2889,711,'_menu_item_object','custom'),(2890,711,'_menu_item_target',''),(2891,711,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2892,711,'_menu_item_xfn',''),(2893,711,'_menu_item_url','/market-report/Rockwell-Granite-Quarry-Gold-Hill/815189'),(2949,717,'_menu_item_object','custom'),(2895,712,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2896,712,'_menu_item_type','custom'),(2897,712,'_menu_item_menu_item_parent','707'),(2898,712,'_menu_item_object_id','712'),(2899,712,'_menu_item_object','custom'),(2900,712,'_menu_item_target',''),(2901,712,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2902,712,'_menu_item_xfn',''),(2903,712,'_menu_item_url','/market-report/Lake-Norman-Huntersville-Cornelius-Mooresville/815187'),(2948,717,'_menu_item_object_id','717'),(2905,713,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2906,713,'_menu_item_type','custom'),(2907,713,'_menu_item_menu_item_parent','707'),(2908,713,'_menu_item_object_id','713'),(2909,713,'_menu_item_object','custom'),(2910,713,'_menu_item_target',''),(2911,713,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2912,713,'_menu_item_xfn',''),(2913,713,'_menu_item_url','/market-report/Charlotte/815191'),(2947,717,'_menu_item_menu_item_parent','0'),(2915,714,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2916,714,'_menu_item_type','post_type'),(2917,714,'_menu_item_menu_item_parent','705'),(2918,714,'_menu_item_object_id','508'),(2919,714,'_menu_item_object','page'),(2920,714,'_menu_item_target',''),(2921,714,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2922,714,'_menu_item_xfn',''),(2923,714,'_menu_item_url',''),(2946,717,'_menu_item_type','custom'),(2925,715,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2926,715,'_menu_item_type','post_type'),(2927,715,'_menu_item_menu_item_parent','0'),(2928,715,'_menu_item_object_id','101'),(2929,715,'_menu_item_object','page'),(2930,715,'_menu_item_target',''),(2931,715,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2932,715,'_menu_item_xfn',''),(2933,715,'_menu_item_url',''),(2945,717,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2935,716,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2936,716,'_menu_item_type','custom'),(2937,716,'_menu_item_menu_item_parent','0'),(2938,716,'_menu_item_object_id','716'),(2939,716,'_menu_item_object','custom'),(2940,716,'_menu_item_target',''),(2941,716,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2942,716,'_menu_item_xfn',''),(2943,716,'_menu_item_url','/contact-form/'),(2951,717,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2952,717,'_menu_item_xfn',''),(2953,717,'_menu_item_url','/'),(2954,718,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2955,718,'_menu_item_type','custom'),(2956,718,'_menu_item_menu_item_parent','0'),(2957,718,'_menu_item_object_id','718'),(2958,718,'_menu_item_object','custom'),(2959,718,'_menu_item_target',''),(2960,718,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2961,718,'_menu_item_xfn',''),(2962,718,'_menu_item_url','/homes-for-sale-featured/'),(2963,719,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2964,719,'_menu_item_type','custom'),(2965,719,'_menu_item_menu_item_parent','0'),(2966,719,'_menu_item_object_id','719'),(2967,719,'_menu_item_object','custom'),(2968,719,'_menu_item_target',''),(2969,719,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2970,719,'_menu_item_xfn',''),(2971,719,'_menu_item_url','#'),(2972,720,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2973,720,'_menu_item_type','custom'),(2974,720,'_menu_item_menu_item_parent','719'),(2975,720,'_menu_item_object_id','720'),(2976,720,'_menu_item_object','custom'),(2977,720,'_menu_item_target',''),(2978,720,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2979,720,'_menu_item_xfn',''),(2980,720,'_menu_item_url','/homes-for-sale-search/'),(2981,721,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2982,721,'_menu_item_type','custom'),(2983,721,'_menu_item_menu_item_parent','719'),(2984,721,'_menu_item_object_id','721'),(2985,721,'_menu_item_object','custom'),(2986,721,'_menu_item_target',''),(2987,721,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2988,721,'_menu_item_xfn',''),(2989,721,'_menu_item_url','/homes-for-sale-map-search/'),(2990,722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2991,722,'_menu_item_type','custom'),(2992,722,'_menu_item_menu_item_parent','719'),(2993,722,'_menu_item_object_id','722'),(2994,722,'_menu_item_object','custom'),(2995,722,'_menu_item_target',''),(2996,722,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2997,722,'_menu_item_xfn',''),(2998,722,'_menu_item_url','/open-home-search/'),(2999,723,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3000,723,'_menu_item_type','custom'),(3001,723,'_menu_item_menu_item_parent','719'),(3002,723,'_menu_item_object_id','723'),(3003,723,'_menu_item_object','custom'),(3004,723,'_menu_item_target',''),(3005,723,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3006,723,'_menu_item_xfn',''),(3007,723,'_menu_item_url','/homes-for-sale-search-advanced/'),(3008,724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3009,724,'_menu_item_type','custom'),(3010,724,'_menu_item_menu_item_parent','0'),(3011,724,'_menu_item_object_id','724'),(3012,724,'_menu_item_object','custom'),(3013,724,'_menu_item_target',''),(3014,724,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3015,724,'_menu_item_xfn',''),(3016,724,'_menu_item_url','/email-alerts/'),(3017,725,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3018,725,'_menu_item_type','custom'),(3019,725,'_menu_item_menu_item_parent','0'),(3020,725,'_menu_item_object_id','725'),(3021,725,'_menu_item_object','custom'),(3022,725,'_menu_item_target',''),(3023,725,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3024,725,'_menu_item_xfn',''),(3025,725,'_menu_item_url','#'),(3026,726,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3027,726,'_menu_item_type','custom'),(3028,726,'_menu_item_menu_item_parent','0'),(3029,726,'_menu_item_object_id','726'),(3030,726,'_menu_item_object','custom'),(3031,726,'_menu_item_target',''),(3032,726,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3033,726,'_menu_item_xfn',''),(3034,726,'_menu_item_url','#'),(3035,727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3036,727,'_menu_item_type','custom'),(3037,727,'_menu_item_menu_item_parent','726'),(3038,727,'_menu_item_object_id','727'),(3039,727,'_menu_item_object','custom'),(3040,727,'_menu_item_target',''),(3041,727,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3042,727,'_menu_item_xfn',''),(3043,727,'_menu_item_url','/property-organizer-login/'),(3044,728,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3045,728,'_menu_item_type','custom'),(3046,728,'_menu_item_menu_item_parent','726'),(3047,728,'_menu_item_object_id','728'),(3048,728,'_menu_item_object','custom'),(3049,728,'_menu_item_target',''),(3050,728,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3051,728,'_menu_item_xfn',''),(3052,728,'_menu_item_url','/valuation-form/'),(3053,729,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3054,729,'_menu_item_type','custom'),(3055,729,'_menu_item_menu_item_parent','0'),(3056,729,'_menu_item_object_id','729'),(3057,729,'_menu_item_object','custom'),(3058,729,'_menu_item_target',''),(3059,729,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3060,729,'_menu_item_xfn',''),(3061,729,'_menu_item_url','/contact-form/'),(3062,730,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3063,730,'_menu_item_type','custom'),(3064,730,'_menu_item_menu_item_parent','0'),(3065,730,'_menu_item_object_id','730'),(3066,730,'_menu_item_object','custom'),(3067,730,'_menu_item_target',''),(3068,730,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3069,730,'_menu_item_xfn',''),(3070,730,'_menu_item_url','/mortgage-calculator/'),(3090,733,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3072,37,'fave_agent_service_area','service area'),(3073,37,'fave_agent_specialties','specialties'),(3075,37,'rs_page_bg_color',''),(3091,733,'_edit_lock','1590781639:1'),(3092,733,'_edit_last','1'),(3093,114,'houzez_total_rating','5'),(3094,733,'review_post_type','houzez_agent'),(3095,733,'review_agent_id','114'),(3096,733,'review_stars','5'),(3097,733,'slide_template',''),(3098,733,'rs_page_bg_color',''),(3099,649,'_edit_lock','1602354028:1'),(3107,744,'fave_agent_company','Lantern Realty and Development'),(3108,744,'fave_agent_email','kimsadler.realtor@gmail.com'),(3109,744,'fave_agent_position','Licensed Agent'),(3110,744,'fave_agent_mobile','704-798-8338'),(3111,744,'fave_agent_website','https://lantern-realty.com/'),(3112,744,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3229,744,'fave_agent_logo','22'),(3114,744,'slide_template',''),(3115,744,'rs_page_bg_color',''),(3116,747,'_wp_attached_file','2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg'),(3117,747,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1834;s:6:\"height\";i:1834;s:4:\"file\";s:49:\"2020/07/46D6A567-550F-4552-9EC3-30E04A3317B5.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"46D6A567-550F-4552-9EC3-30E04A3317B5-1024x1024.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-150x150.jpeg\";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:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"46D6A567-550F-4552-9EC3-30E04A3317B5-1536x1536.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:50:\"46D6A567-550F-4552-9EC3-30E04A3317B5-1170x785.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:48:\"46D6A567-550F-4552-9EC3-30E04A3317B5-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"46D6A567-550F-4552-9EC3-30E04A3317B5-496x496.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D40\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1466597042\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3118,744,'_thumbnail_id','747'),(3120,744,'fave_agent_agencies','45'),(3122,744,'_primary_term_agent_category','4'),(3127,45,'fave_agency_email','contact@lantern-realty.com'),(3128,45,'fave_agency_phone','(704) 298-0087'),(3129,45,'fave_agency_web','https://lantern-realty.com/'),(3130,45,'fave_agency_address','119 West Ave, Kannapolis, NC 28081'),(3131,45,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(3132,45,'rs_page_bg_color',''),(3136,753,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3137,753,'_edit_lock','1603068564:1'),(3138,753,'_edit_last','1'),(3139,753,'fave_agency_orderby','None'),(3140,753,'fave_agency_order','ASC'),(3141,753,'fave_agent_orderby','None'),(3142,753,'fave_agent_order','ASC'),(3143,753,'fave_listing_page_content_area','0'),(3144,753,'fave_prop_no','9'),(3145,753,'fave_properties_sort','d_date'),(3146,753,'fave_listings_tabs','disable'),(3147,753,'fave_header_type','none'),(3148,753,'fave_page_header_image_opacity','0.35'),(3149,753,'fave_page_header_search','0'),(3150,753,'fave_header_full_screen','0'),(3151,753,'fave_page_title','show'),(3152,753,'fave_page_breadcrumb','show'),(3153,753,'fave_page_sidebar','right_sidebar'),(3154,753,'fave_page_background','yes'),(3155,753,'fave_main_menu_trans','no'),(3156,753,'fave_adv_search_enable','global'),(3157,753,'fave_adv_search','hide'),(3158,753,'fave_adv_search_pos','under_menu'),(3159,753,'slide_template',''),(3160,753,'rs_page_bg_color',''),(3161,753,'_wpb_vc_js_status','false'),(3162,753,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:3:\"yes\";s:16:\"selected_sidebar\";s:13:\"agent-sidebar\";}'),(3163,753,'_elementor_edit_mode','builder'),(3164,753,'_elementor_template_type','wp-page'),(3165,753,'_elementor_version','3.0.11'),(3166,755,'_elementor_edit_mode','builder'),(3167,755,'_elementor_template_type','kit'),(3168,755,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3169,755,'_elementor_version','2.9.9'),(3184,757,'fave_agency_web','https://lantern-realty.com/'),(3183,757,'fave_agency_phone','(704) 298-0087'),(3178,757,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3179,757,'_edit_lock','1600540920:1'),(3180,757,'_thumbnail_id','674'),(3181,757,'_edit_last','1'),(3182,757,'fave_agency_email','contact@lantern-realty.com'),(3176,753,'_wp_page_template','template/template-agencies.php'),(3185,757,'fave_agency_address','105 North Main Suite B, Salisbury, NC 28144'),(3186,757,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(3187,757,'slide_template',''),(3188,757,'rs_page_bg_color',''),(3189,758,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3190,758,'_edit_lock','1650418518:1'),(3191,758,'_thumbnail_id','21'),(3192,758,'_edit_last','1'),(3193,758,'fave_agency_email','contact@lantern-realty.com'),(3194,758,'fave_agency_phone','(704) 298-0087'),(3195,758,'fave_agency_web','https://lantern-realty.com/'),(3196,758,'fave_agency_address','4350 Main Street, Suite 215, Harrisburg, NC 28075'),(3197,758,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(3199,758,'rs_page_bg_color',''),(3200,759,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3201,759,'_edit_lock','1645154063:1'),(3202,759,'_thumbnail_id','1125'),(3203,759,'_edit_last','1'),(3204,759,'fave_agency_email','lrdalbemarle@gmail.com'),(3205,759,'fave_agency_phone','(980) 318-4961'),(3206,759,'fave_agency_web','https://lantern-realty.com/'),(3207,759,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(12206,758,'fave_agency_visible','0'),(3209,759,'rs_page_bg_color',''),(3210,759,'fave_agency_address','113 S. Second Street, Albemarle, NC 28001'),(3211,760,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3212,760,'_edit_lock','1645151608:1'),(3213,760,'_thumbnail_id','1363'),(3214,760,'_edit_last','1'),(3215,760,'fave_agency_email','LanternRealtyMooresville@gmail.com'),(3216,760,'fave_agency_phone','(704) 980-9379'),(3217,760,'fave_agency_web','https://lantern-realty.com/'),(3218,760,'fave_agency_address','106 Langtree Village Drive Suite 301, Mooresville, NC 28117'),(3219,760,'fave_agency_facebook','https://www.facebook.com/lanternrealty'),(3220,760,'slide_template',''),(3221,760,'rs_page_bg_color',''),(3222,661,'fave_listing_page_content_area','0'),(3223,661,'rs_page_bg_color','#ffffff'),(3235,370,'rs_page_bg_color',''),(3237,411,'rs_page_bg_color',''),(3239,416,'rs_page_bg_color',''),(3241,468,'rs_page_bg_color',''),(3243,546,'rs_page_bg_color',''),(3245,565,'rs_page_bg_color',''),(3249,361,'_wp_desired_post_slug','tanner-bost'),(3251,361,'rs_page_bg_color',''),(3253,126,'rs_page_bg_color',''),(3256,123,'_wp_desired_post_slug','woody-brown'),(3258,123,'rs_page_bg_color',''),(3260,528,'rs_page_bg_color',''),(3262,380,'rs_page_bg_color',''),(3264,549,'rs_page_bg_color',''),(3266,598,'rs_page_bg_color',''),(3268,470,'rs_page_bg_color',''),(3271,144,'_wp_desired_post_slug','wesley-cook'),(3275,601,'rs_page_bg_color',''),(3279,383,'rs_page_bg_color',''),(3281,135,'rs_page_bg_color',''),(3283,645,'rs_page_bg_color',''),(3285,604,'rs_page_bg_color',''),(3288,358,'_wp_desired_post_slug','tabitha-furr'),(3291,421,'_wp_desired_post_slug','erica-henry'),(3297,478,'_wp_desired_post_slug','leslie-liles'),(3300,319,'_wp_desired_post_slug','wanda-prince'),(3303,489,'_wp_desired_post_slug','bridget-quinn'),(3306,138,'_wp_desired_post_slug','kyle-runyon'),(3309,436,'_wp_desired_post_slug','jill-sawant'),(3312,132,'_wp_desired_post_slug','grant-stevens'),(3315,129,'_wp_desired_post_slug','jennifer-wood'),(3317,551,'rs_page_bg_color',''),(3319,393,'rs_page_bg_color',''),(3321,573,'rs_page_bg_color',''),(3323,553,'rs_page_bg_color',''),(3325,419,'rs_page_bg_color',''),(3328,419,'_wp_desired_post_slug','donna-hawkins'),(3331,377,'rs_page_bg_color',''),(3333,608,'rs_page_bg_color',''),(3337,555,'rs_page_bg_color',''),(3339,487,'rs_page_bg_color',''),(3343,497,'rs_page_bg_color',''),(3345,473,'rs_page_bg_color',''),(3347,390,'rs_page_bg_color',''),(3349,476,'rs_page_bg_color',''),(3351,481,'rs_page_bg_color',''),(3353,503,'rs_page_bg_color',''),(3355,400,'rs_page_bg_color',''),(3357,558,'rs_page_bg_color',''),(3359,576,'rs_page_bg_color',''),(3361,484,'rs_page_bg_color',''),(3365,120,'_wp_desired_post_slug','krysta-kemp'),(3368,322,'rs_page_bg_color',''),(3370,424,'rs_page_bg_color',''),(3373,430,'rs_page_bg_color',''),(3375,427,'rs_page_bg_color',''),(3377,434,'rs_page_bg_color',''),(8825,1465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:640;s:4:\"file\";s:15:\"2020/12/pic.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:482;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:452;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:7:\"pic.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:13:\"iPhone 8 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549041193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.87\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3383,141,'rs_page_bg_color',''),(3385,439,'rs_page_bg_color',''),(3387,442,'rs_page_bg_color',''),(3388,563,'rs_page_bg_color',''),(3390,444,'rs_page_bg_color',''),(3392,560,'rs_page_bg_color',''),(3394,373,'rs_page_bg_color',''),(3395,617,'rs_page_bg_color',''),(3396,579,'rs_page_bg_color',''),(3397,620,'rs_page_bg_color',''),(3398,623,'rs_page_bg_color',''),(3399,101,'fave_listing_page_content_area','0'),(3400,101,'rs_page_bg_color','#ffffff'),(3401,101,'_elementor_edit_mode','builder'),(3402,101,'_elementor_template_type','wp-page'),(3403,101,'_elementor_version','3.6.5'),(3409,101,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">4350 Main Street, Suite 215, Harrisburg, North Carolina 28075<br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">113 South Second Street Albemarle, North Carolina 28001 <br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"d5355d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Asheville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d659e05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 23 Mill Stone Drive -<\\/p><p style=\\\"text-align: center;\\\">Asheville, North Carolina 28803<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31cc897\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"asheville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"216ee74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lexington Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2602e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 105 N State Street -<\\/p><p style=\\\"text-align: center;\\\">Lexington, North Carolina 27293<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"363d16b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"lexington\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"bf088c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tennessee Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96a9bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 416 E. Elk Avenue -<\\/p><p style=\\\"text-align: center;\\\">Elizabethton, Tennessee 37643<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d53d11\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"tennessee\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"f5d031b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Raleigh Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acff562\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">- 4909 Unicon Drive, Ste. 105 -<\\/p>\\n<p style=\\\"text-align: center;\\\">Wake Forest, North Carolina 27587<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9835305\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"raleigh\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(7173,1235,'_edit_last','1'),(7174,1235,'_wp_page_template','default'),(7175,1235,'_calendar_view','a:1:{s:16:\"default-calendar\";s:4:\"list\";}'),(7176,1235,'_calendar_begins','today'),(7177,1235,'_calendar_begins_nth','1'),(7178,1235,'_calendar_begins_custom_date',''),(7179,1235,'_feed_earliest_event_date','months_before'),(7180,1235,'_feed_earliest_event_date_range','1'),(7181,1235,'_feed_latest_event_date','years_after'),(7182,1235,'_feed_latest_event_date_range','1'),(7183,1235,'_calendar_is_static','no'),(7184,1235,'_no_events_message',''),(7185,1235,'_event_formatting','preserve_linebreaks'),(7186,1235,'_poweredby','no'),(7187,1235,'_feed_timezone_setting','use_custom'),(7188,1235,'_feed_timezone','America/New_York'),(7189,1235,'_calendar_date_format_setting','use_site'),(7190,1235,'_calendar_date_format','l, d F Y'),(7191,1235,'_calendar_date_format_php','F j, Y'),(7192,1235,'_calendar_time_format_setting','use_site'),(7193,1235,'_calendar_time_format','G:i a'),(7194,1235,'_calendar_time_format_php','g:i a'),(7195,1235,'_calendar_datetime_separator',''),(7196,1235,'_calendar_datetime_separator_spacing',''),(7197,1235,'_calendar_week_starts_on_setting','use_site'),(7198,1235,'_calendar_week_starts_on','0'),(7199,1235,'_feed_cache_user_amount','2'),(7200,1235,'_feed_cache_user_unit','3600'),(7201,1235,'_feed_cache','7200'),(7202,1235,'_calendar_version','3.1.33'),(7203,1235,'_google_calendar_id','N2VmMjQ1b2o4dnRsN3QyNzA1cDdiamRoZDBAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ=='),(7204,1235,'_google_events_search_query',''),(7205,1235,'_google_events_recurring','show'),(7206,1235,'_google_events_max_results','2500'),(7207,1235,'_grouped_calendars_source','ids'),(7208,1235,'_grouped_calendars_ids',''),(7209,1235,'_grouped_calendars_category',''),(7210,1235,'_default_calendar_style_theme','light'),(7211,1235,'_default_calendar_style_today','#0166bf'),(7212,1235,'_default_calendar_style_days_events','#6ec1e4'),(7213,1235,'_default_calendar_list_range_span','2'),(7214,1235,'_default_calendar_list_range_type','monthly'),(7215,1235,'_default_calendar_list_header','no'),(7216,1235,'_default_calendar_compact_list','no'),(7217,1235,'_default_calendar_limit_visible_events','no'),(7218,1235,'_default_calendar_visible_events','3'),(7219,1235,'_default_calendar_event_bubble_trigger','hover'),(7220,1235,'_default_calendar_trim_titles','no'),(7221,1235,'_default_calendar_trim_titles_chars','20'),(7222,1235,'_default_calendar_expand_multi_day_events','yes'),(7223,1235,'slide_template',''),(7224,1235,'rs_page_bg_color',''),(7314,1241,'_default_calendar_expand_multi_day_events','yes'),(7315,1241,'slide_template',''),(7316,1241,'rs_page_bg_color',''),(3973,456,'wps_cleaner_media_use','media_image-14'),(7272,1241,'_feed_earliest_event_date_range','1'),(7273,1241,'_feed_latest_event_date','years_after'),(7274,1241,'_feed_latest_event_date_range','1'),(7275,1241,'_calendar_is_static','no'),(7276,1241,'_no_events_message',''),(7277,1241,'_event_formatting','preserve_linebreaks'),(7278,1241,'_poweredby','no'),(7279,1241,'_feed_timezone_setting','use_custom'),(7280,1241,'_feed_timezone','America/New_York'),(7281,1241,'_calendar_date_format_setting','use_site'),(7282,1241,'_calendar_date_format','l, d F Y'),(7283,1241,'_calendar_date_format_php','F j, Y'),(7284,1241,'_calendar_time_format_setting','use_site'),(7285,1241,'_calendar_time_format','G:i a'),(7286,1241,'_calendar_time_format_php','g:i a'),(7287,1241,'_calendar_datetime_separator',''),(7288,1241,'_calendar_datetime_separator_spacing',''),(7289,1241,'_calendar_week_starts_on_setting','use_site'),(7290,1241,'_calendar_week_starts_on','0'),(7291,1241,'_feed_cache_user_amount','2'),(7292,1241,'_feed_cache_user_unit','3600'),(7293,1241,'_feed_cache','7200'),(7294,1241,'_calendar_version','3.1.33'),(7295,1241,'_google_calendar_id','N2VmMjQ1b2o4dnRsN3QyNzA1cDdiamRoZDBAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ=='),(7296,1241,'_google_events_search_query',''),(7297,1241,'_google_events_recurring','show'),(7298,1241,'_google_events_max_results','2500'),(7299,1241,'_grouped_calendars_source','ids'),(7300,1241,'_grouped_calendars_ids',''),(7301,1241,'_grouped_calendars_category',''),(7302,1241,'_default_calendar_style_theme','light'),(7303,1241,'_default_calendar_style_today','#0166bf'),(7304,1241,'_default_calendar_style_days_events','#6ec1e4'),(7305,1241,'_default_calendar_list_range_span','2'),(7306,1241,'_default_calendar_list_range_type','monthly'),(7307,1241,'_default_calendar_list_header','no'),(7308,1241,'_default_calendar_compact_list','no'),(7309,1241,'_default_calendar_limit_visible_events','no'),(7310,1241,'_default_calendar_visible_events','3'),(7311,1241,'_default_calendar_event_bubble_trigger','hover'),(7312,1241,'_default_calendar_trim_titles','no'),(7313,1241,'_default_calendar_trim_titles_chars','20'),(7271,1241,'_feed_earliest_event_date','months_before'),(7270,1241,'_calendar_begins_custom_date',''),(7269,1241,'_calendar_begins_nth','1'),(7263,1241,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7264,1241,'_edit_lock','1603048989:1'),(7265,1241,'_edit_last','1'),(7266,1241,'_wp_page_template','default'),(7267,1241,'_calendar_view','a:1:{s:16:\"default-calendar\";s:4:\"grid\";}'),(7268,1241,'_calendar_begins','today'),(7252,1240,'_wp_page_template','template/template-onepage.php'),(7253,1240,'_elementor_edit_mode','builder'),(7254,1240,'_elementor_template_type','wp-page'),(7255,1240,'_elementor_version','3.0.11'),(7256,1240,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7243,1239,'_wp_page_template','template/template-onepage.php'),(7244,1239,'_elementor_edit_mode','builder'),(7245,1239,'_elementor_template_type','wp-page'),(7246,1239,'_elementor_version','3.0.11'),(7247,1239,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\",\"list_row_header_color\":\"globals\\/colors?id=primary\",\"list_element_text_color\":\"globals\\/colors?id=secondary\",\"list_element_even_color\":\"globals\\/colors?id=555146e2\"},\"eael_event_calendar_default_view\":\"listMonth\",\"day_event_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"day_event_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"event_popup_title_typography_typography\":\"custom\",\"event_popup_date_typography_typography\":\"custom\",\"event_popup_date_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"event_popup_date_icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"event_popup_content_typography_typography\":\"custom\",\"event_popup_content_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(3971,451,'wps_cleaner_media_use','media_image-12'),(3972,453,'wps_cleaner_media_use','media_image-13'),(7262,1241,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7261,1241,'_wp_page_template','default'),(7317,1242,'_wp_page_template','template/template-onepage.php'),(7318,1242,'_elementor_edit_mode','builder'),(7319,1242,'_elementor_template_type','wp-page'),(7320,1242,'_elementor_version','3.0.11'),(7321,1242,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7248,1239,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7230,1236,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7257,1240,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7225,1236,'_wp_page_template','template/template-onepage.php'),(7226,1236,'_elementor_edit_mode','builder'),(7227,1236,'_elementor_template_type','wp-page'),(7228,1236,'_elementor_version','3.0.11'),(7229,1236,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\",\"list_row_header_color\":\"globals\\/colors?id=primary\",\"list_element_text_color\":\"globals\\/colors?id=secondary\",\"list_element_even_color\":\"globals\\/colors?id=555146e2\"},\"eael_event_calendar_default_view\":\"listMonth\",\"day_event_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"day_event_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"event_popup_title_typography_typography\":\"custom\",\"event_popup_date_typography_typography\":\"custom\",\"event_popup_date_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"event_popup_date_icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"event_popup_content_typography_typography\":\"custom\",\"event_popup_content_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7171,1235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7172,1235,'_edit_lock','1603067749:1'),(7165,1233,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3489,781,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3490,781,'_edit_lock','1600610216:1'),(3491,782,'_wp_attached_file','2020/09/Sabine_Amoakon.jpg'),(3492,782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1105;s:6:\"height\";i:1011;s:4:\"file\";s:26:\"2020/09/Sabine_Amoakon.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Sabine_Amoakon-1024x937.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:937;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-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:26:\"Sabine_Amoakon-768x703.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:703;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:27:\"Sabine_Amoakon-1105x785.jpg\";s:5:\"width\";i:1105;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-656x600.jpg\";s:5:\"width\";i:656;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Sabine_Amoakon-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Sabine_Amoakon-496x454.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:454;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:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593174411\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.87\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3493,781,'_thumbnail_id','782'),(3494,781,'_edit_last','1'),(3495,781,'fave_agent_company','Lantern Realty and Development'),(3496,781,'fave_agent_email','sab1.homes@outlook.com'),(3497,781,'fave_agent_position','Licensed Agent'),(3498,781,'fave_agent_mobile','704-433-8462'),(3499,781,'fave_agent_website','https://lantern-realty.com/'),(3500,781,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3501,781,'fave_agent_logo','22'),(3502,781,'fave_agent_agencies','45'),(3503,781,'_primary_term_agent_category','4'),(3504,781,'slide_template',''),(3505,781,'rs_page_bg_color',''),(3514,785,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3515,785,'_edit_lock','1600610549:1'),(3516,786,'_wp_attached_file','2020/09/Cheryl_Baxter.jpg'),(3517,786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:293;s:4:\"file\";s:25:\"2020/09/Cheryl_Baxter.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Cheryl_Baxter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Cheryl_Baxter-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3518,785,'_thumbnail_id','786'),(3519,785,'_edit_last','1'),(3520,785,'fave_agent_company','Lantern Realty and Development'),(3521,785,'fave_agent_email','cmbaxter2@gmail.com'),(3522,785,'fave_agent_position','Licensed Agent'),(3523,785,'fave_agent_mobile','704-796-8843'),(3524,785,'fave_agent_website','https://lantern-realty.com/'),(3525,785,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3526,785,'fave_agent_logo','22'),(3527,785,'fave_agent_agencies','45'),(3528,785,'_primary_term_agent_category','7'),(3529,785,'slide_template',''),(3530,785,'rs_page_bg_color',''),(3531,788,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3532,788,'_edit_lock','1612743858:1'),(3533,789,'_wp_attached_file','2020/09/Dale_Bullock.jpg'),(3534,789,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:777;s:6:\"height\";i:909;s:4:\"file\";s:24:\"2020/09/Dale_Bullock.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-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:24:\"Dale_Bullock-768x898.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:898;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-777x785.jpg\";s:5:\"width\";i:777;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-513x600.jpg\";s:5:\"width\";i:513;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Dale_Bullock-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Dale_Bullock-496x580.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:580;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3535,788,'_thumbnail_id','789'),(3536,788,'_edit_last','1'),(3537,788,'fave_agent_company','Lantern Realty and Development'),(3538,788,'fave_agent_email','dale.bullock2014realtor@gmail.com'),(3539,788,'fave_agent_position','Licensed Agent'),(9062,788,'fave_agent_visible','0'),(3540,788,'fave_agent_mobile','704-791-5457'),(3541,788,'fave_agent_website','https://lantern-realty.com/'),(3542,788,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9063,788,'fave_agent_logo','22'),(3544,788,'fave_agent_agencies','45'),(3545,788,'_primary_term_agent_category','7'),(3546,788,'slide_template',''),(3547,788,'rs_page_bg_color',''),(3548,791,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3549,791,'_edit_lock','1600610934:1'),(3550,792,'_wp_attached_file','2020/09/Emily_Chandler.jpg'),(3551,792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:704;s:4:\"file\";s:26:\"2020/09/Emily_Chandler.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-511x600.jpg\";s:5:\"width\";i:511;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Emily_Chandler-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Emily_Chandler-496x582.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:582;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:\"1594134378\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3552,791,'_thumbnail_id','792'),(3553,791,'_edit_last','1'),(3554,791,'fave_agent_company','Lantern Realty and Development'),(3555,791,'fave_agent_email','emilychandler.realtor@gmail.com'),(3556,791,'fave_agent_position','Licensed Agent'),(3557,791,'fave_agent_mobile','615-397-1925'),(3558,791,'fave_agent_website','https://lantern-realty.com/'),(3559,791,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3567,791,'fave_agent_logo','22'),(3561,791,'fave_agent_agencies','758'),(3562,791,'_primary_term_agent_category','7'),(3563,791,'slide_template',''),(3564,791,'rs_page_bg_color',''),(3566,791,'fave_agent_license','297265'),(3568,795,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3569,795,'_edit_lock','1637541321:1'),(3570,796,'_wp_attached_file','2020/09/Meredith_Christy.png'),(3571,796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:651;s:4:\"file\";s:28:\"2020/09/Meredith_Christy.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-276x300.png\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-600x564.png\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-553x600.png\";s:5:\"width\";i:553;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"Meredith_Christy-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Meredith_Christy-496x538.png\";s:5:\"width\";i:496;s:6:\"height\";i:538;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:{}}}'),(3572,795,'_thumbnail_id','796'),(3573,795,'_edit_last','1'),(3574,795,'fave_agent_company','Lantern Realty and Development'),(3575,795,'fave_agent_email','meredith@meredithchristy.com'),(3576,795,'fave_agent_position','Licensed Agent'),(3577,795,'fave_agent_license','NC 298605'),(3578,795,'fave_agent_mobile','980-248-4097'),(3579,795,'fave_agent_website','https://lantern-realty.com/'),(3580,795,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3581,795,'fave_agent_logo','22'),(3582,795,'fave_agent_agencies','758'),(3583,795,'_primary_term_agent_category','7'),(11667,2163,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3585,795,'rs_page_bg_color',''),(3586,798,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3587,798,'_edit_lock','1600611671:1'),(3588,799,'_wp_attached_file','2020/09/Tracie_Clark.jpg'),(3589,799,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:713;s:4:\"file\";s:24:\"2020/09/Tracie_Clark.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-252x300.jpg\";s:5:\"width\";i:252;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-505x600.jpg\";s:5:\"width\";i:505;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Tracie_Clark-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Tracie_Clark-496x589.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:589;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:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599842996\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.87\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.041666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3590,798,'_thumbnail_id','799'),(3591,798,'_edit_last','1'),(3592,798,'fave_agent_company','Lantern Realty and Development'),(3593,798,'fave_agent_email','tracieclarksells@gmail.com'),(3594,798,'fave_agent_position','Licensed Agent'),(3595,798,'fave_agent_license','NC 238413'),(3596,798,'fave_agent_mobile','704-900-4637'),(3597,798,'fave_agent_website','https://lantern-realty.com/'),(3598,798,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3599,798,'fave_agent_logo','22'),(3600,798,'fave_agent_agencies','758'),(3601,798,'_primary_term_agent_category','7'),(3602,798,'slide_template',''),(3603,798,'rs_page_bg_color',''),(3604,801,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3605,801,'_edit_lock','1600611716:1'),(3606,801,'_thumbnail_id','22'),(3607,801,'_edit_last','1'),(3608,801,'fave_agent_company','Lantern Realty and Development'),(3609,801,'fave_agent_email','mdavis@thewhiteoakgrove.com'),(3610,801,'fave_agent_position','Licensed Agent'),(3611,801,'fave_agent_license','NC 289518'),(3612,801,'fave_agent_website','https://lantern-realty.com/'),(3613,801,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3614,801,'fave_agent_logo','22'),(3615,801,'fave_agent_agencies','45'),(3616,801,'_primary_term_agent_category','7'),(3617,801,'slide_template',''),(3618,801,'rs_page_bg_color',''),(3619,803,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3620,803,'_edit_lock','1600611995:1'),(3623,803,'_wp_desired_post_slug',''),(3624,803,'_edit_last','1'),(3625,803,'fave_agent_company','Lantern Realty and Development'),(3626,803,'fave_agent_email','kim@kimsellsconcord.com'),(3627,803,'fave_agent_position','Licensed Agent'),(3628,803,'fave_agent_mobile','704-778-6959'),(3629,803,'fave_agent_website','https://lantern-realty.com/'),(3630,803,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3631,803,'fave_agent_agencies','45'),(3632,803,'_primary_term_agent_category','7'),(3633,803,'slide_template',''),(3634,803,'rs_page_bg_color',''),(3635,805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3636,805,'_edit_lock','1600612250:1'),(3637,806,'_wp_attached_file','2020/09/China_Dunphy.jpg'),(3638,806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:696;s:4:\"file\";s:24:\"2020/09/China_Dunphy.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-517x600.jpg\";s:5:\"width\";i:517;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"China_Dunphy-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"China_Dunphy-496x575.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3639,805,'_thumbnail_id','806'),(3640,805,'_edit_last','1'),(3641,805,'fave_agent_company','Lantern Realty and Development'),(3642,805,'fave_agent_position','Licensed Agent'),(3643,805,'fave_agent_license','NC 293885'),(3644,805,'fave_agent_mobile','704-701-0177'),(3645,805,'fave_agent_website','https://lantern-realty.com/'),(3646,805,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3647,805,'fave_agent_logo','22'),(3648,805,'fave_agent_agencies','45'),(3649,805,'_primary_term_agent_category','7'),(3650,805,'slide_template',''),(3651,805,'rs_page_bg_color',''),(3652,808,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3653,808,'_edit_lock','1600612317:1'),(3654,809,'_wp_attached_file','2020/09/Ivonne_Erion.jpg'),(3655,809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:648;s:4:\"file\";s:24:\"2020/09/Ivonne_Erion.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-278x300.jpg\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-556x600.jpg\";s:5:\"width\";i:556;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Ivonne_Erion-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Ivonne_Erion-496x536.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3656,808,'_thumbnail_id','809'),(3657,808,'_edit_last','1'),(3658,808,'fave_agent_company','Lantern Realty and Development'),(3659,808,'fave_agent_email','ivonne@ivonneerion.com'),(3660,808,'fave_agent_position','Licensed Agent'),(3661,808,'fave_agent_license','NC 289340'),(3662,808,'fave_agent_mobile','704-796-3530'),(3663,808,'fave_agent_website','https://lantern-realty.com/'),(3664,808,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3665,808,'fave_agent_logo','22'),(3666,808,'fave_agent_agencies','45'),(3667,808,'_primary_term_agent_category','7'),(3668,808,'slide_template',''),(3669,808,'rs_page_bg_color',''),(3670,811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3671,811,'_edit_lock','1645147996:1'),(3672,812,'_wp_attached_file','2020/09/Jeff_Franklin.jpg'),(3673,812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:605;s:4:\"file\";s:25:\"2020/09/Jeff_Franklin.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-595x600.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Jeff_Franklin-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Jeff_Franklin-496x500.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3674,811,'_thumbnail_id','812'),(3675,811,'_edit_last','1'),(3676,811,'fave_agent_company','Lantern Realty and Development'),(3677,811,'fave_agent_email','jeff.franklin.realtor@gmail.com'),(3678,811,'fave_agent_position','Licensed Agent'),(3679,811,'fave_agent_license','NC 298704'),(3680,811,'fave_agent_mobile','704-787-4888'),(3681,811,'fave_agent_website','https://lantern-realty.com/'),(3682,811,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3683,811,'fave_agent_logo','22'),(3684,811,'fave_agent_agencies','757'),(3685,811,'_primary_term_agent_category','7'),(11943,2265,'_wp_attached_file','2019/06/Julie_Nutter-1.jpg'),(3687,811,'rs_page_bg_color',''),(3688,814,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3689,814,'_edit_lock','1600612918:1'),(3690,814,'_thumbnail_id','22'),(3691,814,'_edit_last','1'),(3692,814,'fave_agent_company','Lantern Realty and Development'),(3693,814,'fave_agent_email','conardhaywood@gmail.com'),(3694,814,'fave_agent_position','Licensed Agent'),(3695,814,'fave_agent_license','NC 319615'),(3696,814,'fave_agent_mobile','704-467-5102'),(3697,814,'fave_agent_website','https://lantern-realty.com/'),(3698,814,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3699,814,'fave_agent_logo','22'),(3700,814,'fave_agent_agencies','45'),(3701,814,'_primary_term_agent_category','7'),(3702,814,'slide_template',''),(3703,814,'rs_page_bg_color',''),(3704,608,'fave_agent_license','NC 314736'),(3706,816,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3707,816,'_edit_lock','1600613194:1'),(3708,817,'_wp_attached_file','2020/09/Donna_Hiner.jpg'),(3709,817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:618;s:6:\"height\";i:649;s:4:\"file\";s:23:\"2020/09/Donna_Hiner.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-286x300.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-618x564.jpg\";s:5:\"width\";i:618;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-571x600.jpg\";s:5:\"width\";i:571;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:22:\"Donna_Hiner-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"Donna_Hiner-496x521.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3710,816,'_thumbnail_id','817'),(3711,816,'_edit_last','1'),(3712,816,'fave_agent_company','Lantern Realty and Development'),(3713,816,'fave_agent_email','donnasellsrealestate1@gmail.com'),(3714,816,'fave_agent_position','Licensed Agent'),(3715,816,'fave_agent_license','NC 272915'),(3716,816,'fave_agent_mobile','704-956-9898'),(3717,816,'fave_agent_website','https://lantern-realty.com/'),(3718,816,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3719,816,'fave_agent_logo','22'),(3720,816,'fave_agent_agencies','758'),(3721,816,'_primary_term_agent_category','7'),(3722,816,'slide_template',''),(3723,816,'rs_page_bg_color',''),(3724,819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3725,819,'_edit_lock','1645147949:1'),(3726,820,'_wp_attached_file','2020/09/Priscilla_Johnson.png'),(3727,820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:773;s:6:\"height\";i:845;s:4:\"file\";s:29:\"2020/09/Priscilla_Johnson.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-274x300.png\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-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:29:\"Priscilla_Johnson-768x840.png\";s:5:\"width\";i:768;s:6:\"height\";i:840;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-773x785.png\";s:5:\"width\";i:773;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-549x600.png\";s:5:\"width\";i:549;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:28:\"Priscilla_Johnson-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:29:\"Priscilla_Johnson-496x542.png\";s:5:\"width\";i:496;s:6:\"height\";i:542;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:{}}}'),(3728,819,'_thumbnail_id','820'),(3729,819,'_edit_last','1'),(3730,819,'fave_agent_company','Lantern Realty and Development'),(3731,819,'fave_agent_email','priscillajrealtor@gmail.com'),(3732,819,'fave_agent_position','Licensed Agent'),(3733,819,'fave_agent_mobile','704-891-5386'),(3734,819,'fave_agent_website','https://lantern-realty.com/'),(3735,819,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(11942,819,'fave_agent_logo','22'),(3738,819,'_primary_term_agent_category','6'),(3740,819,'rs_page_bg_color',''),(3741,822,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3742,822,'_edit_lock','1600613470:1'),(3743,823,'_wp_attached_file','2020/09/Cheyenne_Kidd.jpg'),(3744,823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:609;s:4:\"file\";s:25:\"2020/09/Cheyenne_Kidd.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-591x600.jpg\";s:5:\"width\";i:591;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Cheyenne_Kidd-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Cheyenne_Kidd-496x503.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:503;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3745,822,'_thumbnail_id','823'),(3746,822,'_edit_last','1'),(3747,822,'fave_agent_company','Lantern Realty and Development'),(3748,822,'fave_agent_email','cheyennekidd00@gmail.com'),(3749,822,'fave_agent_position','Licensed Agent'),(3750,822,'fave_agent_license','NC 318995'),(3751,822,'fave_agent_mobile','980-939-3809'),(3752,822,'fave_agent_website','https://lantern-realty.com/'),(3753,822,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3754,822,'fave_agent_logo','22'),(3755,822,'fave_agent_agencies','757'),(3756,822,'_primary_term_agent_category','7'),(3757,822,'slide_template',''),(3758,822,'rs_page_bg_color',''),(3759,825,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3760,825,'_edit_lock','1600613861:1'),(3761,826,'_wp_attached_file','2020/09/Dawn_Lamb.jpg'),(3762,826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:722;s:6:\"height\";i:796;s:4:\"file\";s:21:\"2020/09/Dawn_Lamb.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-272x300.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-722x785.jpg\";s:5:\"width\";i:722;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-722x564.jpg\";s:5:\"width\";i:722;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-544x600.jpg\";s:5:\"width\";i:544;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:20:\"Dawn_Lamb-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:21:\"Dawn_Lamb-496x547.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3763,825,'_thumbnail_id','826'),(3764,825,'_edit_last','1'),(3765,825,'fave_agent_company','Lantern Realty and Development'),(3766,825,'fave_agent_email','dawnlambrealtor@gmail.com'),(3767,825,'fave_agent_position','Licensed Agent'),(3768,825,'fave_agent_license','NC 315881'),(3769,825,'fave_agent_mobile','980-781-7385'),(3770,825,'fave_agent_website','https://lantern-realty.com/'),(3771,825,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3772,825,'fave_agent_logo','22'),(3773,825,'fave_agent_agencies','45'),(3774,825,'_primary_term_agent_category','7'),(3775,825,'slide_template',''),(3776,825,'rs_page_bg_color',''),(3777,828,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3778,828,'_edit_lock','1600614053:1'),(3779,829,'_wp_attached_file','2020/09/Connie_Merrell.jpg'),(3780,829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:795;s:6:\"height\";i:770;s:4:\"file\";s:26:\"2020/09/Connie_Merrell.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-300x291.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-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:26:\"Connie_Merrell-768x744.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-619x600.jpg\";s:5:\"width\";i:619;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Connie_Merrell-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"Connie_Merrell-496x480.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3781,828,'_thumbnail_id','829'),(3782,828,'_edit_last','1'),(3783,828,'fave_agent_company','Lantern Realty and Development'),(3784,828,'fave_agent_email','connie.merrell.realtor@gmail.com'),(3785,828,'fave_agent_position','Licensed Agent'),(3786,828,'fave_agent_license','NC 320338'),(3787,828,'fave_agent_mobile','704-701-1678'),(3788,828,'fave_agent_website','https://lantern-realty.com/'),(3789,828,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3790,828,'fave_agent_logo','22'),(3791,828,'fave_agent_agencies','45'),(3792,828,'_primary_term_agent_category','7'),(3793,828,'slide_template',''),(3794,828,'rs_page_bg_color',''),(3795,831,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3796,831,'_edit_lock','1600614292:1'),(3797,832,'_wp_attached_file','2020/09/Rachel_Monrad.jpg'),(3798,832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:212;s:6:\"height\";i:226;s:4:\"file\";s:25:\"2020/09/Rachel_Monrad.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Rachel_Monrad-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Rachel_Monrad-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3799,831,'_thumbnail_id','832'),(3800,831,'_edit_last','1'),(3801,831,'fave_agent_company','Lantern Realty and Development'),(3802,831,'fave_agent_email','rachel@randsrealtygroup.com'),(3803,831,'fave_agent_position','Licensed Agent'),(3804,831,'fave_agent_license','NC 251860'),(3805,831,'fave_agent_mobile','704-682-9422'),(3806,831,'fave_agent_website','https://lantern-realty.com/'),(3807,831,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3808,831,'fave_agent_logo','22'),(3809,831,'fave_agent_agencies','760'),(3810,831,'_primary_term_agent_category','7'),(3811,831,'slide_template',''),(3812,831,'rs_page_bg_color',''),(3813,834,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3814,834,'_edit_lock','1600614602:1'),(3815,834,'_thumbnail_id','22'),(3816,834,'_edit_last','1'),(3817,834,'fave_agent_company','Lantern Realty and Development'),(3818,834,'fave_agent_email','rodneque@aol.com'),(3819,834,'fave_agent_position','Licensed Agent'),(3820,834,'fave_agent_license','NC 197764'),(3821,834,'fave_agent_mobile','704-239-3617'),(3822,834,'fave_agent_website','https://lantern-realty.com/'),(3823,834,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3824,834,'fave_agent_logo','22'),(3825,834,'fave_agent_agencies','757'),(3826,834,'_primary_term_agent_category','7'),(3827,834,'slide_template',''),(3828,834,'rs_page_bg_color',''),(3829,836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3830,836,'_edit_lock','1600614866:1'),(3831,837,'_wp_attached_file','2020/09/Kelly_Robinson.jpg'),(3832,837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:464;s:6:\"height\";i:454;s:4:\"file\";s:26:\"2020/09/Kelly_Robinson.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Kelly_Robinson-300x294.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Kelly_Robinson-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"Kelly_Robinson-464x444.jpg\";s:5:\"width\";i:464;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"Kelly_Robinson-464x438.jpg\";s:5:\"width\";i:464;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Kelly_Robinson-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3833,836,'_thumbnail_id','837'),(3834,836,'_edit_last','1'),(3835,836,'fave_agent_company','Lantern Realty and Development'),(3836,836,'fave_agent_email','kelly.robinson.realtor@gmail.com'),(3837,836,'fave_agent_position','Licensed Agent'),(3838,836,'fave_agent_license','NC 316981'),(3839,836,'fave_agent_mobile','704-699-2268'),(3840,836,'fave_agent_website','https://lantern-realty.com/'),(3841,836,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3842,836,'fave_agent_logo','22'),(3843,836,'fave_agent_agencies','45'),(3844,836,'_primary_term_agent_category','7'),(3845,836,'slide_template',''),(3846,836,'rs_page_bg_color',''),(3847,839,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3848,839,'_edit_lock','1600615060:1'),(3849,840,'_wp_attached_file','2020/09/Hayley_Rogers.jpg'),(3850,840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:651;s:4:\"file\";s:25:\"2020/09/Hayley_Rogers.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-276x300.jpg\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-553x600.jpg\";s:5:\"width\";i:553;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Hayley_Rogers-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Hayley_Rogers-496x538.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1471538763\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3851,839,'_thumbnail_id','840'),(3852,839,'_edit_last','1'),(3853,839,'fave_agent_company','Lantern Realty and Development'),(3854,839,'fave_agent_email','hayley.realestate.rogers@gmail.com'),(3855,839,'fave_agent_position','Licensed Agent'),(3856,839,'fave_agent_mobile','704-431-2816'),(3857,839,'fave_agent_website','https://lantern-realty.com/'),(3858,839,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3859,839,'fave_agent_logo','22'),(3860,839,'fave_agent_agencies','758'),(3861,839,'_primary_term_agent_category','7'),(3862,839,'slide_template',''),(3863,839,'rs_page_bg_color',''),(3864,842,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3865,842,'_edit_lock','1600615225:1'),(3866,843,'_wp_attached_file','2020/09/Sarah_Romesburg.jpg'),(3867,843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:219;s:6:\"height\";i:260;s:4:\"file\";s:27:\"2020/09/Sarah_Romesburg.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Sarah_Romesburg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Sarah_Romesburg-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3868,842,'_thumbnail_id','843'),(3869,842,'_edit_last','1'),(3870,842,'fave_agent_company','Lantern Realty and Development'),(3871,842,'fave_agent_email','sarah@randsrealtygroup.com'),(3872,842,'fave_agent_position','Licensed Agent'),(3873,842,'fave_agent_license','NC 279215'),(3874,842,'fave_agent_mobile','336-466-1646'),(3875,842,'fave_agent_website','https://lantern-realty.com/'),(3876,842,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3877,842,'fave_agent_logo','22'),(3878,842,'fave_agent_agencies','760'),(3879,842,'_primary_term_agent_category','7'),(3880,842,'slide_template',''),(3881,842,'rs_page_bg_color',''),(3882,845,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3883,845,'_edit_lock','1600615398:1'),(3884,846,'_wp_attached_file','2020/09/Chelsi_Sherin.jpg'),(3885,846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:789;s:6:\"height\";i:1001;s:4:\"file\";s:25:\"2020/09/Chelsi_Sherin.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-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:25:\"Chelsi_Sherin-768x974.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:974;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-789x785.jpg\";s:5:\"width\";i:789;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-473x600.jpg\";s:5:\"width\";i:473;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Chelsi_Sherin-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Chelsi_Sherin-496x629.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:629;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:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1584705821\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0032679738562092\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3886,845,'_thumbnail_id','846'),(3887,845,'_edit_last','1'),(3888,845,'fave_agent_company','Lantern Realty and Development'),(3889,845,'fave_agent_email','chelsi.sherin@gmail.com'),(3890,845,'fave_agent_position','Licensed Agent'),(3891,845,'fave_agent_license','NC 317621'),(3892,845,'fave_agent_mobile','570-690-3723'),(3893,845,'fave_agent_website','https://lantern-realty.com/'),(3894,845,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(3895,845,'fave_agent_logo','22'),(3896,845,'fave_agent_agencies','45'),(3897,845,'_primary_term_agent_category','7'),(3898,845,'slide_template',''),(3899,845,'rs_page_bg_color',''),(3900,848,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3901,848,'_edit_lock','1645153695:1'),(3902,848,'_thumbnail_id','2258'),(3903,848,'_edit_last','1'),(3904,848,'fave_agent_company','Lantern Realty and Development'),(3905,848,'fave_agent_email','hbsidesrealty@gmail.com'),(3906,848,'fave_agent_position','Licensed Agent'),(11934,848,'fave_agent_visible','0'),(3907,848,'fave_agent_license','NC 322169'),(3908,848,'fave_agent_mobile','704-699-2092'),(3909,848,'fave_agent_website','https://lantern-realty.com/'),(3910,848,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(12201,848,'fave_agent_logo','22'),(3912,848,'fave_agent_agencies','45'),(3913,848,'_primary_term_agent_category','7'),(11936,2261,'_wp_attached_file','2019/06/Jessica_Cloward-1.jpg'),(3915,848,'rs_page_bg_color',''),(3918,851,'_wp_attached_file','2020/09/Ellen_Thomas.jpg'),(3919,851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:633;s:4:\"file\";s:24:\"2020/09/Ellen_Thomas.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-569x600.jpg\";s:5:\"width\";i:569;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Ellen_Thomas-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-496x523.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"XT1575\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1532615335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.67\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.03333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9770,1664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:22:\"2021/03/147-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:7:\"147.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:7:\"147.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1638;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:7:\"147.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:397;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:29:\"Copyright Lifetouch Inc. 2019\";s:12:\"focal_length\";s:1:\"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:7:\"147.jpg\";}'),(9769,1664,'_wp_attached_file','2021/03/147-scaled.jpg'),(10850,1884,'_wp_attached_file','2021/06/PicsArt_06-08-09.58.13-scaled.jpg'),(10851,1884,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1761;s:6:\"height\";i:2560;s:4:\"file\";s:41:\"2021/06/PicsArt_06-08-09.58.13-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-206x300.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"PicsArt_06-08-09.58.13-704x1024.jpg\";s:5:\"width\";i:704;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-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:\"PicsArt_06-08-09.58.13-768x1117.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"PicsArt_06-08-09.58.13-1056x1536.jpg\";s:5:\"width\";i:1056;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"PicsArt_06-08-09.58.13-1408x2048.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:35:\"PicsArt_06-08-09.58.13-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-413x600.jpg\";s:5:\"width\";i:413;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:33:\"PicsArt_06-08-09.58.13-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:34:\"PicsArt_06-08-09.58.13-496x721.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:15:\"360855432028101\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}s:14:\"original_image\";s:26:\"PicsArt_06-08-09.58.13.jpg\";}'),(3934,853,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3935,853,'_edit_lock','1613699294:1'),(3936,853,'_thumbnail_id','1590'),(3937,853,'_edit_last','1'),(3938,853,'fave_agent_company','Lantern Realty and Development'),(3939,853,'fave_agent_email','richard.wilson4565@gmail.com'),(3940,853,'fave_agent_position','Licensed Agent'),(9259,853,'fave_agent_visible','0'),(3941,853,'fave_agent_license','NC 321788'),(3942,853,'fave_agent_mobile','704-996-9902'),(3943,853,'fave_agent_website','https://lantern-realty.com/'),(3944,853,'fave_agent_facebook','https://www.facebook.com/lanternrealty'),(9264,853,'fave_agent_logo','22'),(3946,853,'fave_agent_agencies','45'),(3947,853,'_primary_term_agent_category','7'),(3948,853,'slide_template',''),(3949,853,'rs_page_bg_color',''),(3950,424,'fave_agent_license','NC 303207'),(3952,528,'fave_agent_license','NC 302340'),(7852,1302,'_edit_last','1'),(7851,1302,'_wp_page_template','template/template-onepage.php'),(7850,1302,'_edit_lock','1603069317:1'),(7849,1302,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7848,1302,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3964,755,'_elementor_page_settings','a:7:{s:11:\"viewport_md\";s:0:\"\";s:11:\"viewport_lg\";s:0:\"\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:8:\"2dd0bd27\";s:5:\"title\";s:14:\"Saved Color #5\";s:5:\"color\";s:7:\"#4054B2\";}i:1;a:3:{s:3:\"_id\";s:8:\"5f616f78\";s:5:\"title\";s:14:\"Saved Color #6\";s:5:\"color\";s:7:\"#23A455\";}i:2;a:3:{s:3:\"_id\";s:8:\"69ee5813\";s:5:\"title\";s:14:\"Saved Color #7\";s:5:\"color\";s:4:\"#000\";}i:3;a:3:{s:3:\"_id\";s:8:\"555146e2\";s:5:\"title\";s:14:\"Saved Color #8\";s:5:\"color\";s:4:\"#FFF\";}i:4;a:3:{s:3:\"_id\";s:7:\"d9cbdc1\";s:5:\"title\";s:17:\"Lantern Dark Blue\";s:5:\"color\";s:7:\"#053a72\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:16:\"Primary Headline\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:18:\"Secondary Headline\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:9:\"Body Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:11:\"Accent Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(7160,1233,'_wp_page_template','template/template-onepage.php'),(7161,1233,'_elementor_edit_mode','builder'),(7162,1233,'_elementor_template_type','wp-page'),(7163,1233,'_elementor_version','3.0.11'),(7164,1233,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\",\"list_row_header_color\":\"globals\\/colors?id=primary\",\"list_element_text_color\":\"globals\\/colors?id=secondary\",\"list_element_even_color\":\"globals\\/colors?id=555146e2\"},\"eael_event_calendar_default_view\":\"listMonth\",\"day_event_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"day_event_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"event_popup_title_typography_typography\":\"custom\",\"event_popup_date_typography_typography\":\"custom\",\"event_popup_date_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"event_popup_date_icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"event_popup_content_typography_typography\":\"custom\",\"event_popup_content_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"close_button_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7156,1232,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5812,193,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.8344022246349833693557229707948863506317138671875;s:5:\"bytes\";i:204665;s:11:\"size_before\";i:1889029;s:10:\"size_after\";i:1684364;s:4:\"time\";d:0.41000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:3312;s:11:\"size_before\";i:26402;s:10:\"size_after\";i:23090;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7082;s:11:\"size_before\";i:64863;s:10:\"size_after\";i:57781;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2518;s:11:\"size_before\";i:20293;s:10:\"size_after\";i:17775;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:30433;s:11:\"size_before\";i:268415;s:10:\"size_after\";i:237982;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:10258;s:11:\"size_before\";i:93418;s:10:\"size_after\";i:83160;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:10709;s:11:\"size_before\";i:97720;s:10:\"size_after\";i:87011;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:16040;s:11:\"size_before\";i:155867;s:10:\"size_after\";i:139827;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:22791;s:11:\"size_before\";i:204514;s:10:\"size_after\";i:181723;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:30920;s:11:\"size_before\";i:295131;s:10:\"size_after\";i:264211;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:28516;s:11:\"size_before\";i:266477;s:10:\"size_after\";i:237961;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:11444;s:11:\"size_before\";i:106132;s:10:\"size_after\";i:94688;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:2805;s:11:\"size_before\";i:20991;s:10:\"size_after\";i:18186;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:13505;s:11:\"size_before\";i:132332;s:10:\"size_after\";i:118827;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:14332;s:11:\"size_before\";i:136474;s:10:\"size_after\";i:122142;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(7151,1232,'_wp_page_template','template/template-onepage.php'),(7152,1232,'_elementor_edit_mode','builder'),(7153,1232,'_elementor_template_type','wp-page'),(7154,1232,'_elementor_version','3.0.11'),(7155,1232,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7148,1231,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7140,1230,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5741,1127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.37747292229048667877577827312052249908447265625;s:5:\"bytes\";i:92787;s:11:\"size_before\";i:989467;s:10:\"size_after\";i:896680;s:4:\"time\";d:0.230000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6065;s:11:\"size_before\";i:62069;s:10:\"size_after\";i:56004;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:2076;s:11:\"size_before\";i:20138;s:10:\"size_after\";i:18062;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:15575;s:11:\"size_before\";i:159829;s:10:\"size_after\";i:144254;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:18230;s:11:\"size_before\";i:224247;s:10:\"size_after\";i:206017;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:14922;s:11:\"size_before\";i:156265;s:10:\"size_after\";i:141343;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:20514;s:11:\"size_before\";i:210952;s:10:\"size_after\";i:190438;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1223;s:11:\"size_before\";i:11587;s:10:\"size_after\";i:10364;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:14182;s:11:\"size_before\";i:144380;s:10:\"size_after\";i:130198;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(8525,1367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:828;s:6:\"height\";i:821;s:4:\"file\";s:20:\"2020/10/IMG_0917.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:12:\"IMG_0917.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:12:\"IMG_0917.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:762;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:828;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:12:\"IMG_0917.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8524,1367,'_wp_attached_file','2020/10/IMG_0917.jpg'),(5740,1129,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.75397465587676659737326190224848687648773193359375;s:5:\"bytes\";i:1827;s:11:\"size_before\";i:38431;s:10:\"size_after\";i:36604;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:957;s:11:\"size_before\";i:23189;s:10:\"size_after\";i:22232;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:870;s:11:\"size_before\";i:15242;s:10:\"size_after\";i:14372;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5256,1052,'_wp_attached_file','2020/10/Donna_Hawkins-scaled.jpg'),(5257,1052,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2061;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2020/10/Donna_Hawkins-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-242x300.jpg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Donna_Hawkins-824x1024.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-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:25:\"Donna_Hawkins-768x954.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:954;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1237x1536.jpg\";s:5:\"width\";i:1237;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1649x2048.jpg\";s:5:\"width\";i:1649;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:26:\"Donna_Hawkins-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-483x600.jpg\";s:5:\"width\";i:483;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Donna_Hawkins-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Donna_Hawkins-496x616.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:616;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"Donna_Hawkins.jpg\";}'),(4395,916,'_edit_lock','1602509728:1'),(4394,916,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4072,878,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4073,878,'_edit_lock','1602354126:1'),(4074,878,'_wp_page_template','template/user_dashboard_crm.php'),(4075,878,'_edit_last','1'),(4076,878,'fave_listing_page_content_area','0'),(4077,878,'fave_prop_no','9'),(4078,878,'fave_properties_sort','d_date'),(4079,878,'fave_listings_tabs','disable'),(4080,878,'fave_properties_min_beds','0'),(4081,878,'fave_properties_min_baths','0'),(4082,878,'fave_agency_orderby','None'),(4083,878,'fave_agency_order','ASC'),(4084,878,'fave_agent_orderby','None'),(4085,878,'fave_agent_order','ASC'),(4086,878,'fave_header_type','none'),(4087,878,'fave_page_header_image_opacity','0.35'),(4088,878,'fave_page_header_search','0'),(4089,878,'fave_header_full_screen','0'),(4090,878,'fave_adv_search_enable','global'),(4091,878,'fave_adv_search','hide'),(4092,878,'fave_adv_search_pos','under_menu'),(4093,878,'fave_page_title','show'),(4094,878,'fave_page_breadcrumb','show'),(4095,878,'fave_page_sidebar','right_sidebar'),(4096,878,'fave_page_background','yes'),(4097,878,'fave_main_menu_trans','no'),(4098,878,'slide_template','default'),(4099,878,'rs_page_bg_color','#ffffff'),(4100,878,'_wpb_vc_js_status','false'),(4101,878,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4102,880,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4103,880,'_edit_lock','1602354115:1'),(4104,880,'_wp_page_template','template/user_dashboard_profile.php'),(4105,880,'_edit_last','1'),(4106,880,'fave_listing_page_content_area','0'),(4107,880,'fave_prop_no','9'),(4108,880,'fave_properties_sort','d_date'),(4109,880,'fave_listings_tabs','disable'),(4110,880,'fave_properties_min_beds','0'),(4111,880,'fave_properties_min_baths','0'),(4112,880,'fave_agency_orderby','None'),(4113,880,'fave_agency_order','ASC'),(4114,880,'fave_agent_orderby','None'),(4115,880,'fave_agent_order','ASC'),(4116,880,'fave_header_type','none'),(4117,880,'fave_page_header_image_opacity','0.35'),(4118,880,'fave_page_header_search','0'),(4119,880,'fave_header_full_screen','0'),(4120,880,'fave_adv_search_enable','global'),(4121,880,'fave_adv_search','hide'),(4122,880,'fave_adv_search_pos','under_menu'),(4123,880,'fave_page_title','show'),(4124,880,'fave_page_breadcrumb','show'),(4125,880,'fave_page_sidebar','right_sidebar'),(4126,880,'fave_page_background','yes'),(4127,880,'fave_main_menu_trans','no'),(4128,880,'slide_template','default'),(4129,880,'rs_page_bg_color','#ffffff'),(4130,880,'_wpb_vc_js_status','false'),(4131,880,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4132,882,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4133,882,'_edit_lock','1618361379:1'),(4134,882,'_edit_last','1'),(4135,882,'fave_listing_page_content_area','0'),(4136,882,'fave_prop_no','9'),(4137,882,'fave_properties_sort','d_date'),(4138,882,'fave_listings_tabs','disable'),(4139,882,'fave_properties_min_beds','0'),(4140,882,'fave_properties_min_baths','0'),(4141,882,'fave_agency_orderby','None'),(4142,882,'fave_agency_order','ASC'),(4143,882,'fave_agent_orderby','None'),(4144,882,'fave_agent_order','ASC'),(4145,882,'fave_header_type','none'),(4146,882,'fave_page_header_image_opacity','0.35'),(4147,882,'fave_page_header_search','0'),(4148,882,'fave_header_full_screen','0'),(4149,882,'fave_adv_search_enable','global'),(4150,882,'fave_adv_search','hide'),(4151,882,'fave_adv_search_pos','under_menu'),(4152,882,'fave_page_title','show'),(4153,882,'fave_page_breadcrumb','show'),(4154,882,'fave_page_sidebar','right_sidebar'),(4155,882,'fave_page_background','yes'),(4156,882,'fave_main_menu_trans','no'),(4157,882,'slide_template','default'),(4158,882,'rs_page_bg_color','#ffffff'),(4159,882,'_wpb_vc_js_status','false'),(4160,882,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4161,882,'_wp_page_template','template/template-onepage.php'),(4162,882,'_elementor_edit_mode','builder'),(4166,882,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-graduation-cap\",\"title\":\"Training Links\",\"text\":\"Links to Lantern published training videos and materials.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-training-links\\/\"},\"_id\":\"38d3048\"}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(4164,882,'_elementor_template_type','wp-page'),(4165,882,'_elementor_version','3.1.1'),(7081,1224,'_wp_page_template','template/template-onepage.php'),(7082,1224,'_elementor_edit_mode','builder'),(7083,1224,'_elementor_template_type','wp-page'),(7084,1224,'_elementor_version','3.0.11'),(7085,1224,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6697,1174,'_wp_page_template','template/template-onepage.php'),(6698,1174,'_elementor_edit_mode','builder'),(6699,1174,'_elementor_template_type','wp-page'),(6700,1174,'_elementor_version','3.0.11'),(6701,1174,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5806,145,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.6067185890773085787941454327665269374847412109375;s:5:\"bytes\";i:89393;s:11:\"size_before\";i:842796;s:10:\"size_after\";i:753403;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:2623;s:11:\"size_before\";i:23312;s:10:\"size_after\";i:20689;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7023;s:11:\"size_before\";i:65129;s:10:\"size_after\";i:58106;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2428;s:11:\"size_before\";i:21407;s:10:\"size_after\";i:18979;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7719;s:11:\"size_before\";i:72117;s:10:\"size_after\";i:64398;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8312;s:11:\"size_before\";i:75794;s:10:\"size_after\";i:67482;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:10777;s:11:\"size_before\";i:110878;s:10:\"size_after\";i:100101;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:13789;s:11:\"size_before\";i:135605;s:10:\"size_after\";i:121816;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9673;s:11:\"size_before\";i:88697;s:10:\"size_after\";i:79024;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2009;s:11:\"size_before\";i:17563;s:10:\"size_after\";i:15554;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:10484;s:11:\"size_before\";i:97970;s:10:\"size_after\";i:87486;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:14556;s:11:\"size_before\";i:134324;s:10:\"size_after\";i:119768;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(7143,1231,'_wp_page_template','template/template-onepage.php'),(7144,1231,'_elementor_edit_mode','builder'),(7135,1230,'_wp_page_template','template/template-onepage.php'),(7136,1230,'_elementor_edit_mode','builder'),(7137,1230,'_elementor_template_type','wp-page'),(7138,1230,'_elementor_version','3.0.11'),(7139,1230,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7131,1229,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6694,1173,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7122,1228,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5807,172,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.562797354836387597742941579781472682952880859375;s:5:\"bytes\";i:320109;s:11:\"size_before\";i:2056886;s:10:\"size_after\";i:1736777;s:4:\"time\";d:0.8800000000000001154631945610162802040576934814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3025;s:11:\"size_before\";i:18106;s:10:\"size_after\";i:15081;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5413;s:11:\"size_before\";i:31215;s:10:\"size_after\";i:25802;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:21073;s:11:\"size_before\";i:128592;s:10:\"size_after\";i:107519;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:32059;s:11:\"size_before\";i:198363;s:10:\"size_after\";i:166304;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:1810;s:11:\"size_before\";i:10392;s:10:\"size_after\";i:8582;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:44082;s:11:\"size_before\";i:291412;s:10:\"size_after\";i:247330;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:10180;s:11:\"size_before\";i:62889;s:10:\"size_after\";i:52709;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:10208;s:11:\"size_before\";i:63025;s:10:\"size_after\";i:52817;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:17321;s:11:\"size_before\";i:107504;s:10:\"size_after\";i:90183;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:27148;s:11:\"size_before\";i:171101;s:10:\"size_after\";i:143953;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:30206;s:11:\"size_before\";i:223126;s:10:\"size_after\";i:192920;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:54374;s:11:\"size_before\";i:357721;s:10:\"size_after\";i:303347;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.010000000000001563194018672220408916473388671875;s:5:\"bytes\";i:10221;s:11:\"size_before\";i:63838;s:10:\"size_after\";i:53617;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2490;s:11:\"size_before\";i:15414;s:10:\"size_after\";i:12924;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6328;s:11:\"size_before\";i:37677;s:10:\"size_after\";i:31349;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:44171;s:11:\"size_before\";i:276511;s:10:\"size_after\";i:232340;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(6689,1173,'_wp_page_template','template/template-onepage.php'),(6690,1173,'_elementor_edit_mode','builder'),(6681,1172,'_wp_page_template','template/template-onepage.php'),(6682,1172,'_elementor_edit_mode','builder'),(6683,1172,'_elementor_template_type','wp-page'),(6684,1172,'_elementor_version','3.0.11'),(6685,1172,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6691,1173,'_elementor_template_type','wp-page'),(6692,1173,'_elementor_version','3.0.11'),(6693,1173,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7113,1227,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8857,1491,'_wp_attached_file','2021/01/2021-Educational-Calendar-1.xlsx'),(7126,1229,'_wp_page_template','template/template-onepage.php'),(7127,1229,'_elementor_edit_mode','builder'),(7128,1229,'_elementor_template_type','wp-page'),(7129,1229,'_elementor_version','3.0.11'),(7130,1229,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7117,1228,'_wp_page_template','template/template-onepage.php'),(7118,1228,'_elementor_edit_mode','builder'),(7119,1228,'_elementor_template_type','wp-page'),(7120,1228,'_elementor_version','3.0.11'),(7121,1228,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5808,186,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.2239991871769344555787029094062745571136474609375;s:5:\"bytes\";i:125124;s:11:\"size_before\";i:1023593;s:10:\"size_after\";i:898469;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3591;s:11:\"size_before\";i:25436;s:10:\"size_after\";i:21845;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:9203;s:11:\"size_before\";i:73777;s:10:\"size_after\";i:64574;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3237;s:11:\"size_before\";i:23246;s:10:\"size_after\";i:20009;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:10638;s:11:\"size_before\";i:85909;s:10:\"size_after\";i:75271;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11115;s:11:\"size_before\";i:89645;s:10:\"size_after\";i:78530;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:16519;s:11:\"size_before\";i:143371;s:10:\"size_after\";i:126852;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:22742;s:11:\"size_before\";i:182577;s:10:\"size_after\";i:159835;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12511;s:11:\"size_before\";i:102570;s:10:\"size_after\";i:90059;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2781;s:11:\"size_before\";i:19070;s:10:\"size_after\";i:16289;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:11764;s:11:\"size_before\";i:96089;s:10:\"size_after\";i:84325;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:21023;s:11:\"size_before\";i:181903;s:10:\"size_after\";i:160880;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(7108,1227,'_wp_page_template','template/template-onepage.php'),(7109,1227,'_elementor_edit_mode','builder'),(7110,1227,'_elementor_template_type','wp-page'),(7111,1227,'_elementor_version','3.0.11'),(7112,1227,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7104,1226,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8860,1494,'_wp_attached_file','2021/01/2021-Educational-Calendar-2.xlsx'),(8865,1497,'_wp_attached_file','2021/01/2021-Educational-Calendar-3.xlsx'),(7145,1231,'_elementor_template_type','wp-page'),(7146,1231,'_elementor_version','3.0.11'),(7147,1231,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7090,1225,'_wp_page_template','template/template-onepage.php'),(7091,1225,'_elementor_edit_mode','builder'),(7092,1225,'_elementor_template_type','wp-page'),(7093,1225,'_elementor_version','3.0.11'),(7094,1225,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Announcement Archive\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7100,1226,'_elementor_edit_mode','builder'),(7101,1226,'_elementor_template_type','wp-page'),(7102,1226,'_elementor_version','3.0.11'),(7103,1226,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(4331,906,'_wp_attached_file','2020/10/LANTERN_BC_cmp.jpg'),(4332,906,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:1530;s:4:\"file\";s:26:\"2020/10/LANTERN_BC_cmp.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"LANTERN_BC_cmp-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-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:26:\"LANTERN_BC_cmp-768x593.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"LANTERN_BC_cmp-1536x1187.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:27:\"LANTERN_BC_cmp-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-776x600.jpg\";s:5:\"width\";i:776;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"LANTERN_BC_cmp-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:26:\"LANTERN_BC_cmp-496x383.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(7095,1225,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8878,1501,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.056007765499380912643800911610014736652374267578125;s:5:\"bytes\";i:32898;s:11:\"size_before\";i:3115318;s:10:\"size_after\";i:3082420;s:4:\"time\";d:1.5500000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:32898;s:11:\"size_before\";i:341140;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:308242;s:10:\"size_after\";i:308242;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(7099,1226,'_wp_page_template','template/template-onepage.php'),(7086,1224,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4354,910,'_wp_attached_file','2020/10/Lantern-Yard-signs-All-8-17-08.jpg'),(4355,910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2201;s:6:\"height\";i:1700;s:4:\"file\";s:42:\"2020/10/Lantern-Yard-signs-All-8-17-08.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Lantern-Yard-signs-All-8-17-08-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-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:42:\"Lantern-Yard-signs-All-8-17-08-768x593.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Lantern-Yard-signs-All-8-17-08-1536x1186.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:44:\"Lantern-Yard-signs-All-8-17-08-2048x1582.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1582;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:43:\"Lantern-Yard-signs-All-8-17-08-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-777x600.jpg\";s:5:\"width\";i:777;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:41:\"Lantern-Yard-signs-All-8-17-08-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:42:\"Lantern-Yard-signs-All-8-17-08-496x383.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:383;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:{}}}'),(7077,1223,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7055,1221,'_wp_page_template','template/template-onepage.php'),(7056,1221,'_elementor_edit_mode','builder'),(7057,1221,'_elementor_template_type','wp-page'),(7058,1221,'_elementor_version','3.0.11'),(7059,1221,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7060,1221,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"10\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7063,1222,'_wp_page_template','template/template-onepage.php'),(7064,1222,'_elementor_edit_mode','builder'),(7065,1222,'_elementor_template_type','wp-page'),(7066,1222,'_elementor_version','3.0.11'),(7067,1222,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7068,1222,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"10\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7017,1217,'fave_agency_order','ASC'),(7018,1217,'fave_agent_orderby','None'),(7019,1217,'fave_agent_order','ASC'),(7020,1217,'fave_header_type','none'),(7021,1217,'fave_page_header_image_opacity','0.35'),(7022,1217,'fave_page_header_search','0'),(7023,1217,'fave_header_full_screen','0'),(7024,1217,'fave_adv_search_enable','global'),(7025,1217,'fave_adv_search','hide'),(7026,1217,'fave_adv_search_pos','under_menu'),(7027,1217,'fave_page_title','show'),(7028,1217,'fave_page_breadcrumb','show'),(7029,1217,'fave_page_sidebar','right_sidebar'),(7030,1217,'fave_page_background','yes'),(7031,1217,'fave_main_menu_trans','no'),(7032,1217,'_genesis_noindex','1'),(7033,1217,'_genesis_nofollow','1'),(7034,1217,'_genesis_noarchive','1'),(7035,1217,'exclude_local_search','1'),(7036,1217,'slide_template','default'),(7037,1217,'rs_page_bg_color','#ffffff'),(7038,1217,'passster_activate_protection','true'),(7039,1217,'passster_protection_type','password'),(7040,1217,'passster_password','lantern704'),(7041,1217,'_wpb_vc_js_status','false'),(7042,1217,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7043,1217,'_elementor_edit_mode','builder'),(7044,1217,'_elementor_template_type','wp-page'),(7045,1217,'_elementor_version','3.1.1'),(7046,1217,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7047,1217,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"30\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7048,1220,'_wp_page_template','template/template-onepage.php'),(7049,1220,'_elementor_edit_mode','builder'),(7050,1220,'_elementor_template_type','wp-page'),(7051,1220,'_elementor_version','3.0.11'),(7052,1220,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7053,1220,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"10\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9926,1731,'_elementor_data','[{\"id\":\"402bbd1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ea1fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26b8881\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"936b3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5244e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">An archive of all recent announcements from Lantern.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbc8cb1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6af94e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12d4ed4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90d6bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"e836876\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No announcements found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"10\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1cacce5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9921,1731,'_wp_page_template','template/template-onepage.php'),(9922,1731,'_elementor_edit_mode','builder'),(9923,1731,'_elementor_template_type','wp-page'),(9924,1731,'_elementor_version','3.0.11'),(9925,1731,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7004,1218,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7015,1217,'fave_properties_min_baths','0'),(7014,1217,'fave_properties_min_beds','0'),(7008,1217,'_wp_page_template','template/template-onepage.php'),(7009,1217,'_edit_last','1'),(7010,1217,'fave_listing_page_content_area','0'),(7011,1217,'fave_prop_no','9'),(7012,1217,'fave_properties_sort','d_date'),(7013,1217,'fave_listings_tabs','disable'),(7016,1217,'fave_agency_orderby','None'),(4390,868,'_wp_desired_post_slug','erp-subscription'),(4393,880,'_wp_desired_post_slug','profile'),(4396,916,'_wp_page_template','template/template-onepage.php'),(4397,916,'_edit_last','1'),(4398,916,'fave_listing_page_content_area','0'),(4399,916,'fave_prop_no','9'),(4400,916,'fave_properties_sort','d_date'),(4401,916,'fave_listings_tabs','disable'),(4402,916,'fave_properties_min_beds','0'),(4403,916,'fave_properties_min_baths','0'),(4404,916,'fave_agency_orderby','None'),(4405,916,'fave_agency_order','ASC'),(4406,916,'fave_agent_orderby','None'),(4407,916,'fave_agent_order','ASC'),(4408,916,'fave_header_type','none'),(4409,916,'fave_page_header_image_opacity','0.35'),(4410,916,'fave_page_header_search','0'),(4411,916,'fave_header_full_screen','0'),(4412,916,'fave_adv_search_enable','global'),(4413,916,'fave_adv_search','hide'),(4414,916,'fave_adv_search_pos','under_menu'),(4415,916,'fave_page_title','show'),(4416,916,'fave_page_breadcrumb','show'),(4417,916,'fave_page_sidebar','right_sidebar'),(4418,916,'fave_page_background','yes'),(4419,916,'fave_main_menu_trans','no'),(4420,916,'_genesis_noindex','1'),(4421,916,'_genesis_nofollow','1'),(4422,916,'_genesis_noarchive','1'),(4423,916,'exclude_local_search','1'),(4424,916,'slide_template','default'),(4425,916,'rs_page_bg_color','#ffffff'),(4426,916,'_wpb_vc_js_status','false'),(4427,916,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(6971,1214,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7072,1223,'_wp_page_template','template/template-onepage.php'),(6999,1218,'_wp_page_template','template/template-onepage.php'),(7000,1218,'_elementor_edit_mode','builder'),(7001,1218,'_elementor_template_type','wp-page'),(7002,1218,'_elementor_version','3.0.11'),(7003,1218,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"d2c6c76\"}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6975,1196,'_edit_last','1'),(6976,1196,'_wp_page_template','default'),(6984,1194,'_wp_page_template','default'),(6983,1194,'_edit_last','1'),(6979,1196,'slide_template',''),(6980,1196,'rs_page_bg_color',''),(6981,1196,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6982,1196,'_edit_lock','1603042484:1'),(6997,1217,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6987,1194,'slide_template',''),(6988,1194,'rs_page_bg_color',''),(6989,1194,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6990,1194,'_edit_lock','1603042469:1'),(6993,1194,'_wp_old_date','2020-10-18'),(6996,1196,'_wp_old_date','2020-10-18'),(6998,1217,'_edit_lock','1618360420:1'),(6957,1213,'_wp_page_template','template/template-onepage.php'),(6958,1213,'_elementor_edit_mode','builder'),(6959,1213,'_elementor_template_type','wp-page'),(6960,1213,'_elementor_version','3.0.11'),(10988,1911,'_wp_page_template','template/template-onepage.php'),(10989,1911,'_elementor_edit_mode','builder'),(10990,1911,'_elementor_template_type','wp-page'),(10991,1911,'_elementor_version','3.0.11'),(10992,1911,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10993,1911,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6939,1211,'_wp_page_template','template/template-onepage.php'),(8876,1501,'_wp_attached_file','2021/01/IMG_7791-Small.jpg'),(8877,1501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:955;s:4:\"file\";s:26:\"2021/01/IMG_7791-Small.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.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:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:917;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:503;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:18:\"IMG_7791-Small.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1572658616\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6948,1212,'_wp_page_template','template/template-onepage.php'),(6949,1212,'_elementor_edit_mode','builder'),(6950,1212,'_elementor_template_type','wp-page'),(6951,1212,'_elementor_version','3.0.11'),(6952,1212,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6953,1212,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6961,1213,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6962,1213,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6912,1208,'_wp_page_template','template/template-onepage.php'),(6913,1208,'_elementor_edit_mode','builder'),(6914,1208,'_elementor_template_type','wp-page'),(6915,1208,'_elementor_version','3.0.11'),(6916,1208,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6917,1208,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6924,1209,'_elementor_version','3.0.11'),(6925,1209,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6926,1209,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6910,1206,'_tablepress_table_options','{\"last_editor\":1,\"table_head\":true,\"table_foot\":false,\"alternating_row_colors\":true,\"row_hover\":true,\"print_name\":false,\"print_name_position\":\"above\",\"print_description\":false,\"print_description_position\":\"below\",\"extra_css_classes\":\"\",\"use_datatables\":true,\"datatables_sort\":true,\"datatables_filter\":true,\"datatables_paginate\":true,\"datatables_lengthchange\":true,\"datatables_paginate_entries\":10,\"datatables_info\":true,\"datatables_scrollx\":false,\"datatables_custom_commands\":\"\"}'),(6911,1206,'_tablepress_table_visibility','{\"rows\":[1,1,1,1,1,1],\"columns\":[1,1,1,1,1,1,1,1,1,1]}'),(6921,1209,'_wp_page_template','template/template-onepage.php'),(6922,1209,'_elementor_edit_mode','builder'),(6923,1209,'_elementor_template_type','wp-page'),(6930,1210,'_wp_page_template','template/template-onepage.php'),(6931,1210,'_elementor_edit_mode','builder'),(6932,1210,'_elementor_template_type','wp-page'),(6933,1210,'_elementor_version','3.0.11'),(6934,1210,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6935,1210,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(4460,916,'_elementor_edit_mode','builder'),(4461,916,'_elementor_template_type','wp-page'),(4462,916,'_elementor_version','3.0.9'),(4463,916,'_elementor_data','[{\"id\":\"3023e99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36f31bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"69d5c09\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"2a88dc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Agent Registration\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b973675\",\"elType\":\"widget\",\"settings\":{\"title\":\"Progress\",\"percent\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"inner_text\":\"Become a Lantern Agent\",\"bar_color\":\"#6EC1E4\",\"bar_height\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bar_inner_typography_typography\":\"custom\",\"bar_inner_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#085D81\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"80ab5f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Welcome!<\\/p><p>We\'re so excited that you\'ve decided to join the Lantern Team. Please take a few moments to fill out the form below. The information entered here will allow us to begin processing your information to join our office. Your info will also be sent to our web developer for inclusion on our website. Please respond to all fields and reach out if you have any questions about the form.<\\/p><p>- The Lantern Team<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e7186a5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"bce8c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"846b119\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>New Agent Information Sheet<\\/strong><\\/h4><p style=\\\"text-align: center;\\\">Please complete the form in it\'s entirety.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e798e9\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"936\"}},\"elements\":[],\"widgetType\":\"wp-widget-weforms_widget\"},{\"id\":\"154d349\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"339b1ad\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6940,1211,'_elementor_edit_mode','builder'),(6941,1211,'_elementor_template_type','wp-page'),(6942,1211,'_elementor_version','3.0.11'),(6943,1211,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6944,1211,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=offices \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6661,1169,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5809,187,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.3887346505316546796393595286644995212554931640625;s:5:\"bytes\";i:229925;s:11:\"size_before\";i:2018881;s:10:\"size_after\";i:1788956;s:4:\"time\";d:0.56999999999999995115018691649311222136020660400390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:4002;s:11:\"size_before\";i:27811;s:10:\"size_after\";i:23809;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:9174;s:11:\"size_before\";i:71887;s:10:\"size_after\";i:62713;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3253;s:11:\"size_before\";i:22589;s:10:\"size_after\";i:19336;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:31374;s:11:\"size_before\";i:277522;s:10:\"size_after\";i:246148;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:10576;s:11:\"size_before\";i:90275;s:10:\"size_after\";i:79699;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:11329;s:11:\"size_before\";i:95500;s:10:\"size_after\";i:84171;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:16434;s:11:\"size_before\";i:149227;s:10:\"size_after\";i:132793;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:23003;s:11:\"size_before\";i:207012;s:10:\"size_after\";i:184009;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:37192;s:11:\"size_before\";i:348602;s:10:\"size_after\";i:311410;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:32375;s:11:\"size_before\";i:295425;s:10:\"size_after\";i:263050;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:13864;s:11:\"size_before\";i:114136;s:10:\"size_after\";i:100272;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2850;s:11:\"size_before\";i:20475;s:10:\"size_after\";i:17625;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:16487;s:11:\"size_before\";i:142146;s:10:\"size_after\";i:125659;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:18012;s:11:\"size_before\";i:156274;s:10:\"size_after\";i:138262;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(6670,1170,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6860,1191,'_wp_page_template','template/template-onepage.php'),(6861,1191,'_elementor_edit_mode','builder'),(6862,1191,'_elementor_template_type','wp-page'),(6863,1191,'_elementor_version','3.0.11'),(6864,1191,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6865,1191,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6890,1203,'_wp_page_template','template/template-onepage.php'),(6891,1203,'_elementor_edit_mode','builder'),(6892,1203,'_elementor_template_type','wp-page'),(6893,1203,'_elementor_version','3.0.11'),(6894,1203,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6895,1203,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6882,1201,'_wp_page_template','template/template-onepage.php'),(6883,1201,'_elementor_edit_mode','builder'),(6884,1201,'_elementor_template_type','wp-page'),(6885,1201,'_elementor_version','3.0.11'),(6886,1201,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6887,1201,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6876,1195,'_wp_attached_file','2020/10/2020-Educational-Calendar-1.xlsx'),(6877,1197,'_wp_attached_file','2020/10/2020-Educational-Calendar-2.xlsx'),(6899,1204,'_wp_page_template','template/template-onepage.php'),(6900,1204,'_elementor_edit_mode','builder'),(6880,1199,'_tablepress_table_options','{\"last_editor\":1,\"table_head\":true,\"table_foot\":false,\"alternating_row_colors\":true,\"row_hover\":true,\"print_name\":false,\"print_name_position\":\"above\",\"print_description\":false,\"print_description_position\":\"below\",\"extra_css_classes\":\"\",\"use_datatables\":true,\"datatables_sort\":true,\"datatables_filter\":true,\"datatables_paginate\":true,\"datatables_lengthchange\":true,\"datatables_paginate_entries\":150,\"datatables_info\":true,\"datatables_scrollx\":false,\"datatables_custom_commands\":\"\"}'),(6881,1199,'_tablepress_table_visibility','{\"rows\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"columns\":[1,1,1,1,1,1,1,1]}'),(6904,1204,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[table id=team \\/]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6834,1188,'_wp_page_template','template/template-onepage.php'),(6835,1188,'_elementor_edit_mode','builder'),(6825,1187,'_wp_page_template','template/template-onepage.php'),(6826,1187,'_elementor_edit_mode','builder'),(6827,1187,'_elementor_template_type','wp-page'),(6828,1187,'_elementor_version','3.0.11'),(6829,1187,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6830,1187,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a7a63bb\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[vg_sheet_editor editor_id=\\\"1186\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6817,1186,'vgse_post_type','post'),(6818,1186,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6819,1186,'_edit_lock','1603035952:1'),(6820,1186,'_edit_last','1'),(6821,1186,'_wp_page_template','default'),(6822,1186,'slide_template',''),(6823,1186,'rs_page_bg_color',''),(6824,1186,'vgse_columns','a:2:{s:7:\"enabled\";a:0:{}s:8:\"disabled\";a:27:{s:10:\"post_title\";s:5:\"Title\";s:9:\"post_name\";s:8:\"URL Slug\";s:12:\"post_content\";s:7:\"Content\";s:14:\"open_wp_editor\";s:9:\"WP Editor\";s:9:\"view_post\";s:4:\"View\";s:9:\"post_date\";s:4:\"Date\";s:13:\"post_modified\";s:13:\"Modified Date\";s:11:\"post_author\";s:6:\"Author\";s:12:\"post_excerpt\";s:7:\"Excerpt\";s:11:\"post_status\";s:6:\"Status\";s:14:\"comment_status\";s:8:\"Comments\";s:10:\"menu_order\";s:5:\"Order\";s:13:\"_thumbnail_id\";s:14:\"Featured Image\";s:8:\"category\";s:10:\"Categories\";s:8:\"post_tag\";s:4:\"Tags\";s:9:\"post_type\";s:9:\"Post type\";s:19:\"wpse_open_elementor\";s:9:\"Elementor\";s:22:\"_primary_term_category\";s:21:\"Primary Term Category\";s:8:\"_um_core\";s:7:\"Um Core\";s:17:\"_vc_post_settings\";s:16:\"Vc Post Settings\";s:21:\"_wp_desired_post_slug\";s:20:\"Wp Desired Post Slug\";s:12:\"_wp_old_date\";s:11:\"Wp Old Date\";s:17:\"_wp_page_template\";s:16:\"Wp Page Template\";s:30:\"_wp_trash_meta_comments_status\";s:29:\"Wp Trash Meta Comments Status\";s:24:\"passster_protection_type\";s:24:\"Passster Protection Type\";s:16:\"rs_page_bg_color\";s:16:\"Rs Page Bg Color\";s:14:\"slide_template\";s:14:\"Slide Template\";}}'),(8873,1499,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.116694275722437179609869417618028819561004638671875;s:5:\"bytes\";i:5865;s:11:\"size_before\";i:277083;s:10:\"size_after\";i:271218;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5865;s:11:\"size_before\";i:51068;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45203;s:10:\"size_after\";i:45203;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(6836,1188,'_elementor_template_type','wp-page'),(6837,1188,'_elementor_version','3.0.11'),(6838,1188,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6839,1188,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6852,1190,'_wp_page_template','template/template-onepage.php'),(6843,1189,'_wp_page_template','template/template-onepage.php'),(6844,1189,'_elementor_edit_mode','builder'),(6845,1189,'_elementor_template_type','wp-page'),(6846,1189,'_elementor_version','3.0.11'),(6847,1189,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6848,1189,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3447cd0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-lpwtoc_widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6853,1190,'_elementor_edit_mode','builder'),(6854,1190,'_elementor_template_type','wp-page'),(6855,1190,'_elementor_version','3.0.11'),(6856,1190,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6857,1190,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6901,1204,'_elementor_template_type','wp-page'),(6902,1204,'_elementor_version','3.0.11'),(6903,1204,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6770,1180,'_wp_page_template','template/template-onepage.php'),(6771,1180,'_elementor_edit_mode','builder'),(6772,1180,'_elementor_template_type','wp-page'),(6773,1180,'_elementor_version','3.0.11'),(6774,1180,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6775,1180,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5946bd\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Ultimate Posts\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No posts found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"5\",\"show_title\":\"on\",\"date_format\":\"F j, Y g:i a\",\"excerpt_length\":\"10\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"custom_fields\":\"Mobile\",\"cats\":[\"\"],\"types\":[\"houzez_agent\"],\"sticky\":\"show\",\"orderby\":\"menu_order\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6778,1181,'_wp_page_template','template/template-onepage.php'),(6779,1181,'_elementor_edit_mode','builder'),(6780,1181,'_elementor_template_type','wp-page'),(6781,1181,'_elementor_version','3.0.11'),(6782,1181,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6783,1181,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5946bd\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No posts found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"150\",\"show_title\":\"on\",\"date_format\":\"F j, Y g:i a\",\"excerpt_length\":\"10\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"custom_fields\":\"Mobile\",\"cats\":[\"\"],\"types\":[\"houzez_agent\"],\"sticky\":\"show\",\"orderby\":\"menu_order\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6808,1185,'_wp_page_template','template/template-onepage.php'),(6799,1184,'_wp_page_template','template/template-onepage.php'),(6800,1184,'_elementor_edit_mode','builder'),(6801,1184,'_elementor_template_type','wp-page'),(6802,1184,'_elementor_version','3.0.11'),(6803,1184,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6804,1184,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5fd2da1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ezw_tco\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6795,1183,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6796,1183,'_last_edited_by','1'),(6797,1183,'_last_edited_time','2020-10-18 15:30:31'),(6809,1185,'_elementor_edit_mode','builder'),(6810,1185,'_elementor_template_type','wp-page'),(6811,1185,'_elementor_version','3.0.11'),(6812,1185,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6813,1185,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6715,1175,'fave_properties_min_baths','0'),(6716,1175,'fave_agency_orderby','None'),(6717,1175,'fave_agency_order','ASC'),(6718,1175,'fave_agent_orderby','None'),(6719,1175,'fave_agent_order','ASC'),(6720,1175,'fave_header_type','none'),(6721,1175,'fave_page_header_image_opacity','0.35'),(6722,1175,'fave_page_header_search','0'),(6723,1175,'fave_header_full_screen','0'),(6724,1175,'fave_adv_search_enable','global'),(6725,1175,'fave_adv_search','hide'),(6726,1175,'fave_adv_search_pos','under_menu'),(6727,1175,'fave_page_title','show'),(6728,1175,'fave_page_breadcrumb','show'),(6729,1175,'fave_page_sidebar','right_sidebar'),(6730,1175,'fave_page_background','yes'),(6731,1175,'fave_main_menu_trans','no'),(6732,1175,'_genesis_noindex','1'),(6733,1175,'_genesis_nofollow','1'),(6734,1175,'_genesis_noarchive','1'),(6735,1175,'exclude_local_search','1'),(6736,1175,'slide_template','default'),(6737,1175,'rs_page_bg_color','#ffffff'),(6738,1175,'passster_activate_protection','true'),(6739,1175,'passster_protection_type','password'),(6740,1175,'passster_password','lantern704'),(6741,1175,'_wpb_vc_js_status','false'),(6742,1175,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(6743,1175,'_elementor_edit_mode','builder'),(6744,1175,'_elementor_template_type','wp-page'),(6745,1175,'_elementor_version','3.2.4'),(6752,1175,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6753,1175,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"840c536\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Request Changes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xs\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"fd4608d\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"840e4c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07f24f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Important details about our Lantern Offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1c22423\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1RZeS8sZbMo36w042KLU7h06T05NQmVulkOTVU2f_jnw\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" use_cache=\\\"no\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a210fe2\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"852e65d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Directory\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee5b2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">A quick listing of all Lantern Team Members.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"890064a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e1d41c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4dd8b53\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[gdoc key=\\\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1yssCPVaGZmW7SO0WRRgJAlPgmYdqTuku__x2JNuIvGE\\/edit?usp=sharing\\\" width=\\\"100%\\\" class=\\\"display compact nowrap no-responsive\\\" query=\\\"SELECT A,B,C,D,E,F,G,H WHERE I=\'Live\'\\\" csv_headers=\\\"1\\\" use_cache=\\\"no\\\" datatables_page_length=\\\"150\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0d10027\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6754,1178,'_wp_page_template','template/template-onepage.php'),(6755,1178,'_elementor_edit_mode','builder'),(6756,1178,'_elementor_template_type','wp-page'),(6757,1178,'_elementor_version','3.0.11'),(6758,1178,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6759,1178,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6787,1182,'_wp_page_template','template/template-onepage.php'),(6788,1182,'_elementor_edit_mode','builder'),(6789,1182,'_elementor_template_type','wp-page'),(6790,1182,'_elementor_version','3.0.11'),(6791,1182,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6792,1182,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6762,1179,'_wp_page_template','template/template-onepage.php'),(6763,1179,'_elementor_edit_mode','builder'),(6764,1179,'_elementor_template_type','wp-page'),(6765,1179,'_elementor_version','3.0.11'),(6766,1179,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6767,1179,'_elementor_data','[{\"id\":\"6156a7e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"90b83fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c3212\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"e79db0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Directory\",\"size\":\"xxl\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1ef18a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"2fb8c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5946bd\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Ultimate Posts\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No posts found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"5\",\"show_title\":\"on\",\"date_format\":\"F j, Y g:i a\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"thumb_size\":\"thumbnail\",\"custom_fields\":\"Mobile\",\"cats\":[\"\"],\"types\":[\"houzez_agent\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6702,1174,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6714,1175,'fave_properties_min_beds','0'),(6713,1175,'fave_listings_tabs','disable'),(7073,1223,'_elementor_edit_mode','builder'),(7074,1223,'_elementor_template_type','wp-page'),(7075,1223,'_elementor_version','3.0.11'),(7076,1223,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Announcement\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6966,1214,'_wp_page_template','template/template-onepage.php'),(6967,1214,'_elementor_edit_mode','builder'),(6968,1214,'_elementor_template_type','wp-page'),(6969,1214,'_elementor_version','3.0.11'),(6970,1214,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"d2c6c76\"}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"478f757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">The latest team announcement. Check out the announcements page for a full archive.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6706,1175,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6707,1175,'_edit_lock','1603043823:1'),(6708,1175,'_wp_page_template','template/template-onepage.php'),(6709,1175,'_edit_last','1'),(6710,1175,'fave_listing_page_content_area','0'),(6711,1175,'fave_prop_no','9'),(6712,1175,'fave_properties_sort','d_date'),(6678,1171,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6686,1172,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8871,1499,'_wp_attached_file','2021/01/BRPhoto-18.jpeg'),(8872,1499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:23:\"2021/01/BRPhoto-18.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:15:\"BRPhoto-18.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1522300090\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6406,1158,'mec_gcal_id','_8d9lcgrfdpr6asjk6dj38eb668o3edhgc4qm2dhl6pj64php6ph38d3670rj0phncpig'),(6407,1158,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6408,1158,'mec_g_recurrence_rule',''),(6409,1158,'mec_advanced_days',NULL),(6410,1158,'mec_imported_from_google','1'),(6411,1159,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6412,1159,'mec_location_id','17'),(6413,1159,'mec_dont_show_map','0'),(6414,1159,'mec_organizer_id','18'),(6415,1159,'mec_allday','0'),(6416,1159,'mec_hide_time','0'),(6417,1159,'mec_hide_end_time','0'),(6418,1159,'mec_start_date','2020-11-19'),(6419,1159,'mec_start_time_hour','3'),(6420,1159,'mec_start_time_minutes','00'),(6421,1159,'mec_start_time_ampm','PM'),(6422,1159,'mec_start_day_seconds','54000'),(6423,1159,'mec_end_date','2020-11-19'),(6424,1159,'mec_end_time_hour','4'),(6425,1159,'mec_end_time_minutes','30'),(6426,1159,'mec_end_time_ampm','PM'),(6427,1159,'mec_end_day_seconds','59400'),(6428,1159,'mec_repeat_status','0'),(6429,1159,'mec_repeat_type',''),(6430,1159,'mec_repeat_interval',NULL),(6431,1159,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6432,1159,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-19\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-19\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6433,1159,'mec_source','google-calendar'),(6434,1159,'mec_gcal_ical_uid','CSVConvert61650a2f48baea1c926009ab15c88934'),(6435,1159,'mec_gcal_id','_8d9lcgrfdpr6asjk6oojcd9gc4p6cd1oc9gmao9hccsj4dhg60sm2ohh6lhjge1p6cq0'),(6436,1159,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6437,1159,'mec_g_recurrence_rule',''),(6438,1159,'mec_advanced_days',NULL),(6439,1160,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6440,1160,'mec_location_id','17'),(6441,1160,'mec_dont_show_map','0'),(6442,1160,'mec_organizer_id','18'),(6443,1160,'mec_allday','0'),(6444,1160,'mec_hide_time','0'),(6445,1160,'mec_hide_end_time','0'),(6446,1160,'mec_start_date','2020-10-27'),(6447,1160,'mec_start_time_hour','2'),(6448,1160,'mec_start_time_minutes','00'),(6449,1160,'mec_start_time_ampm','PM'),(6450,1160,'mec_start_day_seconds','50400'),(6451,1160,'mec_end_date','2020-10-27'),(6452,1160,'mec_end_time_hour','4'),(6453,1160,'mec_end_time_minutes','00'),(6454,1160,'mec_end_time_ampm','PM'),(6455,1160,'mec_end_day_seconds','57600'),(6456,1160,'mec_repeat_status','0'),(6457,1160,'mec_repeat_type',''),(6458,1160,'mec_repeat_interval',NULL),(6459,1160,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6460,1160,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-27\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-27\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6461,1160,'mec_source','google-calendar'),(6462,1160,'mec_gcal_ical_uid','CSVConvert7853c03bc7eae8f4bb5e3bec26bee6af'),(6463,1160,'mec_gcal_id','_8d9lcgrfdpr6asjk6ss3acr360pm4opnclgmae366hh64db56dh6aopi6ph6ap9mc5j0'),(6464,1160,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6465,1160,'mec_g_recurrence_rule',''),(6466,1160,'mec_advanced_days',NULL),(6467,1161,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6468,1161,'mec_location_id','17'),(6469,1161,'mec_dont_show_map','0'),(6470,1161,'mec_organizer_id','18'),(6471,1161,'mec_allday','0'),(6472,1161,'mec_hide_time','0'),(6473,1161,'mec_hide_end_time','0'),(6474,1161,'mec_start_date','2020-11-05'),(6475,1161,'mec_start_time_hour','9'),(6476,1161,'mec_start_time_minutes','30'),(6477,1161,'mec_start_time_ampm','PM'),(6478,1161,'mec_start_day_seconds','77400'),(6479,1161,'mec_end_date','2020-11-05'),(6480,1161,'mec_end_time_hour','11'),(6481,1161,'mec_end_time_minutes','00'),(6482,1161,'mec_end_time_ampm','PM'),(6483,1161,'mec_end_day_seconds','82800'),(6484,1161,'mec_repeat_status','0'),(6485,1161,'mec_repeat_type',''),(6486,1161,'mec_repeat_interval',NULL),(6487,1161,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6488,1161,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-05\";s:4:\"hour\";s:1:\"9\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-05\";s:4:\"hour\";s:2:\"11\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6511,1162,'mec_end_time_ampm','PM'),(6510,1162,'mec_end_time_minutes','00'),(6509,1162,'mec_end_time_hour','4'),(6489,1161,'mec_source','google-calendar'),(6490,1161,'mec_gcal_ical_uid','CSVConvert89bbd1d125ed6ce31f8041a5ab7e19e1'),(6491,1161,'mec_gcal_id','_8d9lcgrfdpr6asjk70sm4oj465i32chlcli3cor56comce1g6gom2db1c8rmac9pckog'),(6492,1161,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6493,1161,'mec_g_recurrence_rule',''),(6494,1161,'mec_advanced_days',NULL),(6495,1161,'mec_imported_from_google','1'),(6496,1162,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6497,1162,'mec_location_id','17'),(6498,1162,'mec_dont_show_map','0'),(6499,1162,'mec_organizer_id','18'),(6500,1162,'mec_allday','0'),(6501,1162,'mec_hide_time','0'),(6502,1162,'mec_hide_end_time','0'),(6503,1162,'mec_start_date','2020-10-20'),(6504,1162,'mec_start_time_hour','2'),(6505,1162,'mec_start_time_minutes','00'),(6506,1162,'mec_start_time_ampm','PM'),(6507,1162,'mec_start_day_seconds','50400'),(6508,1162,'mec_end_date','2020-10-20'),(6245,1153,'mec_hide_end_time','0'),(6246,1153,'mec_start_date','2020-09-22'),(6247,1153,'mec_start_time_hour','2'),(6248,1153,'mec_start_time_minutes','00'),(6249,1153,'mec_start_time_ampm','PM'),(6250,1153,'mec_start_day_seconds','50400'),(6251,1153,'mec_end_date','2020-09-22'),(6252,1153,'mec_end_time_hour','3'),(6253,1153,'mec_end_time_minutes','30'),(6254,1153,'mec_end_time_ampm','PM'),(4574,936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4597,955,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4595,953,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4594,936,'_weforms_version','1.6.6'),(4583,936,'wpuf_form_settings','a:49:{s:11:\"redirect_to\";s:4:\"page\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:3:\"964\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:11:\"Submit Form\";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:\"humanpresence_enabled\";b:0;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:\"\";}'),(4584,936,'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:28:\"Agent and Admin Notification\";s:7:\"subject\";s:19:\"Welcome to Lantern!\";s:2:\"to\";s:12:\"{user_email}\";s:7:\"replyTo\";s:62:\"ch2realty@gmail.com, paulasevert@yahoo.com, deana327@gmail.com\";s:7:\"message\";s:5408:\"<p style=\"line-height: 1.2; font-family: Roboto; color: #7a7a7a; text-align: left;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">Hi {name-first:format},</span></p>\n<h2 style=\"line-height: 1.2; font-family: Roboto; color: #7a7a7a; text-align: left;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000;\">Congratulations and welcome to the Lantern team!</span></h2>\n<div style=\"color: #7a7a7a; font-family: Roboto; font-size: 16px;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000;\">&nbsp;</span></div>\n<p style=\"color: #7a7a7a; font-family: Roboto; font-size: 16px;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">Your information has been submitted for registration. We will be in touch if any further information is needed. Please allow 48-72 hours for your new agent profile to show on the Lantern website.</span></p>\n<p style=\"color: #7a7a7a; font-family: Roboto; font-size: 16px;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">As next steps, please visit our <a href=\"https://lantern-realty.com/the-lantern-team/team-portal/\">Team Portal</a> to review all the materials you&rsquo;ll need to start your successful career with Lantern.</span></p>\n<p><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">Here\'s the information you submitted:</span></p>\n<p><span style=\"font-family: arial, helvetica, sans-serif; color: #000000; font-size: 16px;\">{all_fields}</span></p>\n<p><span style=\"font-size: 10px;\"><span style=\"font-family: arial, helvetica, sans-serif; color: #000000;\">Reference Info:</span></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 431px; height: 343px;\" border=\"0\" width=\"198\" cellspacing=\"0\" cellpadding=\"0\"><colgroup> <col style=\"width: 50pt;\" span=\"3\" width=\"66\" /> </colgroup>\n<tbody>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt; width: 50pt;\" align=\"right\" width=\"66\" height=\"19\"><span style=\"font-size: 10px;\">1</span></td>\n<td style=\"width: 50pt;\" width=\"66\"><span style=\"font-size: 10px;\">Top Box</span></td>\n<td style=\"width: 50pt;\" width=\"66\"><span style=\"font-size: 10px;\">{name-full:format}</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">2</span></td>\n<td><span style=\"font-size: 10px;\">Big Box</span></td>\n<td><span style=\"font-size: 10px;\">{field:website_bio}</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">3</span></td>\n<td><span style=\"font-size: 10px;\">Email</span></td>\n<td><span style=\"font-size: 10px;\">{user_email}</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">4</span></td>\n<td><span style=\"font-size: 10px;\">Position</span></td>\n<td><span style=\"font-size: 10px;\">Licensed Agent</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">5</span></td>\n<td><span style=\"font-size: 10px;\">Company Name</span></td>\n<td><span style=\"font-size: 10px;\">Lantern Realty and Development</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">6</span></td>\n<td><span style=\"font-size: 10px;\">Mobile</span></td>\n<td>&nbsp;</td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">7</span></td>\n<td><span style=\"font-size: 10px;\">Website</span></td>\n<td><span style=\"font-size: 10px;\">https://lantern-realty.com/</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">8</span></td>\n<td><span style=\"font-size: 10px;\">Facebook</span></td>\n<td><span style=\"font-size: 10px;\">https://www.facebook.com/lanternrealty</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">9</span></td>\n<td colspan=\"2\"><span style=\"font-size: 10px;\">Company Logo</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">10</span></td>\n<td><span style=\"font-size: 10px;\">Categories</span></td>\n<td><span style=\"font-size: 10px;\">Front Page, Licensed Agent, {field:home_office}</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">11</span></td>\n<td><span style=\"font-size: 10px;\">Featured Image</span></td>\n<td><span style=\"font-size: 10px;\">Headshot</span></td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" height=\"19\">&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">12</span></td>\n<td><span style=\"font-size: 10px;\">Order</span></td>\n<td>&nbsp;</td>\n</tr>\n<tr style=\"height: 14.5pt;\">\n<td style=\"height: 14.5pt;\" align=\"right\" height=\"19\"><span style=\"font-size: 10px;\">13</span></td>\n<td><span style=\"font-size: 10px;\">Agencies</span></td>\n<td><span style=\"font-size: 10px;\">Lantern Realty and Development - {field:home_office}</span></td>\n</tr>\n</tbody>\n</table>\";s:8:\"fromName\";s:30:\"Lantern Realty and Development\";s:11:\"fromAddress\";s:26:\"contant@lantern-realty.com\";s:2:\"cc\";s:62:\"ch2realty@gmail.com, paulasevert@yahoo.com, deana327@gmail.com\";s:3:\"bcc\";s:13:\"{admin_email}\";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:\"\";}}}}}'),(4585,936,'integrations','a:1:{s:5:\"slack\";O:8:\"stdClass\":2:{s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";}}'),(4587,946,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4590,949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4596,954,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4592,951,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4593,952,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4606,936,'_weforms_view_count','259'),(6644,1167,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6645,1167,'_elementor_controls_usage','a:9:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;s:5:\"align\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:25:\"houzez_elementor_icon_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:10:\"icon_boxes\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_iconbox_style\";a:4:{s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;s:15:\"title_spacing_a\";i:2;}}}}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:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:2;}}}}s:14:\"eael-post-grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:33:\"eael_section_post_timeline_layout\";a:2:{s:22:\"eael_post_grid_columns\";i:1;s:19:\"eael_excerpt_length\";i:1;}s:23:\"section_post_grid_links\";a:3:{s:19:\"image_link_nofollow\";i:1;s:19:\"title_link_nofollow\";i:1;s:23:\"read_more_link_nofollow\";i:1;}}}}s:19:\"eael-event-calendar\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:18:\"eael_event_section\";a:2:{s:24:\"eael_event_calendar_type\";i:1;s:16:\"eael_event_items\";i:1;}s:26:\"eael_event_google_calendar\";a:3:{s:25:\"eael_event_google_api_key\";i:1;s:22:\"eael_event_calendar_id\";i:1;s:29:\"eael_google_calendar_end_date\";i:1;}}}}}'),(6632,1166,'mec_source','google-calendar'),(6633,1166,'mec_gcal_ical_uid','CSVConvertfee759cc2b997a19e9c518d4bbd84803'),(6634,1166,'mec_gcal_id','_8d9lcgrfdpr6asjkcpimadpl75hm6cj274sjeo9h75ijiopl64s68d32c9i3gd1o60pg'),(6635,1166,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6636,1166,'mec_g_recurrence_rule',''),(6637,1166,'mec_advanced_days',NULL),(6638,1166,'mec_imported_from_google','1'),(6639,1167,'_wp_page_template','template/template-onepage.php'),(6640,1167,'_elementor_edit_mode','builder'),(6641,1167,'_elementor_template_type','wp-page'),(6642,1167,'_elementor_version','3.0.11'),(6643,1167,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a626a\",\"elType\":\"widget\",\"settings\":{\"eael_post_grid_columns\":\"eael-col-1\",\"show_load_more_text\":\"Load More\",\"eael_excerpt_length\":100,\"excerpt_expanison_indicator\":\"...\",\"eael_read_more_text\":\"Read More\",\"read_more_button_text\":\"Read More\",\"image_link_nofollow\":\"true\",\"title_link_nofollow\":\"true\",\"read_more_link_nofollow\":\"true\"},\"elements\":[],\"widgetType\":\"eael-post-grid\"},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5858,514,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1411756;s:10:\"size_after\";i:1411756;s:4:\"time\";d:1.75;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30121;s:10:\"size_after\";i:30121;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:98768;s:10:\"size_after\";i:98768;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28306;s:10:\"size_after\";i:28306;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:127192;s:10:\"size_after\";i:127192;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:135629;s:10:\"size_after\";i:135629;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:222299;s:10:\"size_after\";i:222299;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:198179;s:10:\"size_after\";i:198179;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:118911;s:10:\"size_after\";i:118911;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25170;s:10:\"size_after\";i:25170;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:131867;s:10:\"size_after\";i:131867;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:295314;s:10:\"size_after\";i:295314;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}}}'),(4655,353,'_wp_desired_post_slug','wpforms-preview'),(4656,964,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4657,964,'_edit_lock','1602512079:1'),(4658,964,'_wp_page_template','template/template-onepage.php'),(4659,964,'_edit_last','1'),(4660,964,'fave_listing_page_content_area','0'),(4661,964,'fave_prop_no','9'),(4662,964,'fave_properties_sort','d_date'),(4663,964,'fave_listings_tabs','disable'),(4664,964,'fave_properties_min_beds','0'),(4665,964,'fave_properties_min_baths','0'),(4666,964,'fave_agency_orderby','None'),(4667,964,'fave_agency_order','ASC'),(4668,964,'fave_agent_orderby','None'),(4669,964,'fave_agent_order','ASC'),(4670,964,'fave_header_type','none'),(4671,964,'fave_page_header_image_opacity','0.35'),(4672,964,'fave_page_header_search','0'),(4673,964,'fave_header_full_screen','0'),(4674,964,'fave_adv_search_enable','global'),(4675,964,'fave_adv_search','hide'),(4676,964,'fave_adv_search_pos','under_menu'),(4677,964,'fave_page_title','show'),(4678,964,'fave_page_breadcrumb','show'),(4679,964,'fave_page_sidebar','right_sidebar'),(4680,964,'fave_page_background','yes'),(4681,964,'fave_main_menu_trans','no'),(4682,964,'slide_template',''),(4683,964,'rs_page_bg_color',''),(4684,964,'_wpb_vc_js_status','false'),(4685,964,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4686,964,'_elementor_edit_mode','builder'),(4687,964,'_elementor_template_type','wp-page'),(4688,964,'_elementor_version','3.0.9'),(5859,515,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.9861286254728867106678080745041370391845703125;s:5:\"bytes\";i:856;s:11:\"size_before\";i:3172;s:10:\"size_after\";i:2316;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:856;s:11:\"size_before\";i:3172;s:10:\"size_after\";i:2316;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5860,529,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5861,529,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.92063944726600510648495401255786418914794921875;s:5:\"bytes\";i:263579;s:11:\"size_before\";i:3327749;s:10:\"size_after\";i:3064170;s:4:\"time\";d:1.340000000000000301980662698042578995227813720703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:2114;s:11:\"size_before\";i:21023;s:10:\"size_after\";i:18909;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5457;s:11:\"size_before\";i:56534;s:10:\"size_after\";i:51077;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:36302;s:11:\"size_before\";i:510522;s:10:\"size_after\";i:474220;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:36572;s:11:\"size_before\";i:510662;s:10:\"size_after\";i:474090;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1878;s:11:\"size_before\";i:17551;s:10:\"size_after\";i:15673;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:32276;s:11:\"size_before\";i:404279;s:10:\"size_after\";i:372003;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5990;s:11:\"size_before\";i:69247;s:10:\"size_after\";i:63257;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6541;s:11:\"size_before\";i:73767;s:10:\"size_after\";i:67226;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:10226;s:11:\"size_before\";i:125466;s:10:\"size_after\";i:115240;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:16539;s:11:\"size_before\";i:214903;s:10:\"size_after\";i:198364;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:39476;s:11:\"size_before\";i:498428;s:10:\"size_after\";i:458952;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:38498;s:11:\"size_before\";i:474585;s:10:\"size_after\";i:436087;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8016;s:11:\"size_before\";i:88388;s:10:\"size_after\";i:80372;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1468;s:11:\"size_before\";i:15118;s:10:\"size_after\";i:13650;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9;s:5:\"bytes\";i:10902;s:11:\"size_before\";i:121111;s:10:\"size_after\";i:110209;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11324;s:11:\"size_before\";i:126165;s:10:\"size_after\";i:114841;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(4701,964,'_elementor_data','[{\"id\":\"8995e8a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"16eb73b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8800882\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2f9025\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54e154d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b013c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Agent Form Submitted!\",\"size\":\"xxl\",\"align\":\"center\",\"header_size\":\"h1\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"719cdd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Progress\",\"percent\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"inner_text\":\"Become a Lantern Agent\",\"bar_color\":\"#6EC1E4\",\"bar_height\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"bar_inner_typography_typography\":\"custom\",\"bar_inner_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_color\":\"#085D81\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"73678f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"0b56402\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74ccb86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Congratulations and welcome to the team!<\\/h2><div>\\u00a0<\\/div><p>Your information has been submitted for registration. We will be in touch if any further information is needed. Please allow 48-72 hours for your new agent profile to show on the Lantern website.<\\/p><p>As next steps, please visit our Team Portal to review all the materials you\'ll need to start your successful career with Lantern.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aa30678\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Team Portal\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"xl\",\"selected_icon\":{\"value\":\"fas fa-chalkboard-teacher\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f388190\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f46dd9e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3a4fe02\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4904850\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(6593,1165,'mec_start_day_seconds','50400'),(6594,1165,'mec_end_date','2020-10-29'),(6595,1165,'mec_end_time_hour','3'),(6596,1165,'mec_end_time_minutes','30'),(6597,1165,'mec_end_time_ampm','PM'),(6598,1165,'mec_end_day_seconds','55800'),(6599,1165,'mec_repeat_status','0'),(6600,1165,'mec_repeat_type',''),(6601,1165,'mec_repeat_interval',NULL),(6602,1165,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6603,1165,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-29\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-29\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6604,1165,'mec_source','google-calendar'),(6605,1165,'mec_gcal_ical_uid','CSVConvertfd971c756530269a98351062491798f1'),(6606,1165,'mec_gcal_id','_8d9lcgrfdpr6asjkcpi3idphccrjadhl6co34dhpc4sjgcpl64o3cchk74ojee9ocoog'),(6607,1165,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6608,1165,'mec_g_recurrence_rule',''),(6609,1165,'mec_advanced_days',NULL),(6610,1166,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6611,1166,'mec_location_id','17'),(6612,1166,'mec_dont_show_map','0'),(6613,1166,'mec_organizer_id','18'),(6614,1166,'mec_allday','0'),(6615,1166,'mec_hide_time','0'),(6616,1166,'mec_hide_end_time','0'),(6617,1166,'mec_start_date','2020-10-13'),(6618,1166,'mec_start_time_hour','8'),(6619,1166,'mec_start_time_minutes','30'),(6620,1166,'mec_start_time_ampm','PM'),(6621,1166,'mec_start_day_seconds','73800'),(6622,1166,'mec_end_date','2020-10-13'),(6623,1166,'mec_end_time_hour','10'),(6624,1166,'mec_end_time_minutes','00'),(6625,1166,'mec_end_time_ampm','PM'),(6626,1166,'mec_end_day_seconds','79200'),(6627,1166,'mec_repeat_status','0'),(6628,1166,'mec_repeat_type',''),(6629,1166,'mec_repeat_interval',NULL),(6630,1166,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6631,1166,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-13\";s:4:\"hour\";s:1:\"8\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-13\";s:4:\"hour\";s:2:\"10\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6592,1165,'mec_start_time_ampm','PM'),(6591,1165,'mec_start_time_minutes','00'),(6590,1165,'mec_start_time_hour','2'),(6589,1165,'mec_start_date','2020-10-29'),(6573,1164,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6574,1164,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-09-29\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-09-29\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6575,1164,'mec_source','google-calendar'),(6576,1164,'mec_gcal_ical_uid','CSVConvertef725a9a5f09dad2469a3b75c525a764'),(6577,1164,'mec_gcal_id','_8d9lcgrfdpr6asjkclj3echlc4sm2db660sm8ob468q3ceb16dh3edb36kp3ao9n6oq0'),(6578,1164,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6579,1164,'mec_g_recurrence_rule',''),(6580,1164,'mec_advanced_days',NULL),(6581,1164,'mec_imported_from_google','1'),(6582,1165,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6583,1165,'mec_location_id','17'),(6584,1165,'mec_dont_show_map','0'),(6585,1165,'mec_organizer_id','18'),(6586,1165,'mec_allday','0'),(6587,1165,'mec_hide_time','0'),(6588,1165,'mec_hide_end_time','0'),(6531,1163,'mec_hide_end_time','0'),(6532,1163,'mec_start_date','2020-11-12'),(6533,1163,'mec_start_time_hour','3'),(6534,1163,'mec_start_time_minutes','00'),(6535,1163,'mec_start_time_ampm','PM'),(6536,1163,'mec_start_day_seconds','54000'),(6537,1163,'mec_end_date','2020-11-12'),(6538,1163,'mec_end_time_hour','4'),(6539,1163,'mec_end_time_minutes','30'),(6540,1163,'mec_end_time_ampm','PM'),(6541,1163,'mec_end_day_seconds','59400'),(6542,1163,'mec_repeat_status','0'),(6543,1163,'mec_repeat_type',''),(6544,1163,'mec_repeat_interval',NULL),(6545,1163,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6546,1163,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-12\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-12\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6547,1163,'mec_source','google-calendar'),(6548,1163,'mec_gcal_ical_uid','CSVConvertecc54fb5484ac7c07cea14adb3370035'),(6549,1163,'mec_gcal_id','_8d9lcgrfdpr6asjkclhm6d9kcph3ad1o6hgm6dr360rm6pb164q62p326cpjec1g6cqg'),(6571,1164,'mec_repeat_type',''),(6572,1164,'mec_repeat_interval',NULL),(6570,1164,'mec_repeat_status','0'),(6569,1164,'mec_end_day_seconds','57600'),(6568,1164,'mec_end_time_ampm','PM'),(6550,1163,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6551,1163,'mec_g_recurrence_rule',''),(6552,1163,'mec_advanced_days',NULL),(6553,1164,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6554,1164,'mec_location_id','17'),(6555,1164,'mec_dont_show_map','0'),(6556,1164,'mec_organizer_id','18'),(6557,1164,'mec_allday','0'),(6558,1164,'mec_hide_time','0'),(6559,1164,'mec_hide_end_time','0'),(6560,1164,'mec_start_date','2020-09-29'),(6561,1164,'mec_start_time_hour','2'),(6562,1164,'mec_start_time_minutes','00'),(6563,1164,'mec_start_time_ampm','PM'),(6564,1164,'mec_start_day_seconds','50400'),(6565,1164,'mec_end_date','2020-09-29'),(6566,1164,'mec_end_time_hour','4'),(6567,1164,'mec_end_time_minutes','00'),(6512,1162,'mec_end_day_seconds','57600'),(6513,1162,'mec_repeat_status','0'),(6514,1162,'mec_repeat_type',''),(6515,1162,'mec_repeat_interval',NULL),(6516,1162,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6517,1162,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-20\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-20\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6518,1162,'mec_source','google-calendar'),(6519,1162,'mec_gcal_ical_uid','CSVConvertb6167b7bbc0ff1be6a30db5fa4a36e34'),(6520,1162,'mec_gcal_id','_8d9lcgrfdpr6asjkc8r32dhnc8rm4oj361j6ccb2ckr62cpgchh3apj16hgj6dj56cq0'),(6521,1162,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6522,1162,'mec_g_recurrence_rule',''),(6523,1162,'mec_advanced_days',NULL),(6524,1162,'mec_imported_from_google','1'),(6525,1163,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6526,1163,'mec_location_id','17'),(6527,1163,'mec_dont_show_map','0'),(6528,1163,'mec_organizer_id','18'),(6529,1163,'mec_allday','0'),(6530,1163,'mec_hide_time','0'),(5835,417,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1077122853870235985596082173287868499755859375;s:5:\"bytes\";i:132014;s:11:\"size_before\";i:1306072;s:10:\"size_after\";i:1174058;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:2780;s:11:\"size_before\";i:24584;s:10:\"size_after\";i:21804;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7329;s:11:\"size_before\";i:68731;s:10:\"size_after\";i:61402;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:2719;s:11:\"size_before\";i:22874;s:10:\"size_after\";i:20155;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:19519;s:11:\"size_before\";i:202214;s:10:\"size_after\";i:182695;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7761;s:11:\"size_before\";i:74455;s:10:\"size_after\";i:66694;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:8400;s:11:\"size_before\";i:79140;s:10:\"size_after\";i:70740;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11052;s:11:\"size_before\";i:117569;s:10:\"size_after\";i:106517;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:14000;s:11:\"size_before\";i:147807;s:10:\"size_after\";i:133807;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:20057;s:11:\"size_before\";i:208339;s:10:\"size_after\";i:188282;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:9882;s:11:\"size_before\";i:93871;s:10:\"size_after\";i:83989;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2073;s:11:\"size_before\";i:18168;s:10:\"size_after\";i:16095;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:11114;s:11:\"size_before\";i:104974;s:10:\"size_after\";i:93860;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:15328;s:11:\"size_before\";i:143346;s:10:\"size_after\";i:128018;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5836,423,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.704825452644481487141092657111585140228271484375;s:5:\"bytes\";i:324370;s:11:\"size_before\";i:3726324;s:10:\"size_after\";i:3401954;s:4:\"time\";d:0.890000000000000124344978758017532527446746826171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2144;s:11:\"size_before\";i:21396;s:10:\"size_after\";i:19252;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:6250;s:11:\"size_before\";i:65503;s:10:\"size_after\";i:59253;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:46213;s:11:\"size_before\";i:480803;s:10:\"size_after\";i:434590;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:64470;s:11:\"size_before\";i:677402;s:10:\"size_after\";i:612932;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2040;s:11:\"size_before\";i:19725;s:10:\"size_after\";i:17685;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:35106;s:11:\"size_before\";i:448523;s:10:\"size_after\";i:413417;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6413;s:11:\"size_before\";i:76626;s:10:\"size_after\";i:70213;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7139;s:11:\"size_before\";i:81652;s:10:\"size_after\";i:74513;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:11382;s:11:\"size_before\";i:140951;s:10:\"size_after\";i:129569;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:18727;s:11:\"size_before\";i:238746;s:10:\"size_after\";i:220019;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:47034;s:11:\"size_before\";i:571624;s:10:\"size_after\";i:524590;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:41352;s:11:\"size_before\";i:527867;s:10:\"size_after\";i:486515;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:9043;s:11:\"size_before\";i:95888;s:10:\"size_after\";i:86845;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1536;s:11:\"size_before\";i:15764;s:10:\"size_after\";i:14228;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10210;s:11:\"size_before\";i:106690;s:10:\"size_after\";i:96480;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:15311;s:11:\"size_before\";i:157164;s:10:\"size_after\";i:141853;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5787,612,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.684979329076373488760509644635021686553955078125;s:5:\"bytes\";i:231316;s:11:\"size_before\";i:2663403;s:10:\"size_after\";i:2432087;s:4:\"time\";d:0.62000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3654;s:11:\"size_before\";i:46554;s:10:\"size_after\";i:42900;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:36575;s:11:\"size_before\";i:399759;s:10:\"size_after\";i:363184;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1459;s:11:\"size_before\";i:18319;s:10:\"size_after\";i:16860;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.25;s:5:\"bytes\";i:41404;s:11:\"size_before\";i:447541;s:10:\"size_after\";i:406137;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1265;s:11:\"size_before\";i:14192;s:10:\"size_after\";i:12927;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:24626;s:11:\"size_before\";i:277870;s:10:\"size_after\";i:253244;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5061;s:11:\"size_before\";i:63124;s:10:\"size_after\";i:58063;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:5392;s:11:\"size_before\";i:67177;s:10:\"size_after\";i:61785;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9810;s:11:\"size_before\";i:110819;s:10:\"size_after\";i:101009;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:16584;s:11:\"size_before\";i:174771;s:10:\"size_after\";i:158187;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:28898;s:11:\"size_before\";i:345498;s:10:\"size_after\";i:316600;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:23760;s:11:\"size_before\";i:281381;s:10:\"size_after\";i:257621;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:6300;s:11:\"size_before\";i:80138;s:10:\"size_after\";i:73838;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1074;s:11:\"size_before\";i:13407;s:10:\"size_after\";i:12333;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:8934;s:11:\"size_before\";i:115038;s:10:\"size_after\";i:106104;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:8493;s:11:\"size_before\";i:106837;s:10:\"size_after\";i:98344;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:8027;s:11:\"size_before\";i:100978;s:10:\"size_after\";i:92951;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(6269,1154,'mec_location_id','17'),(6255,1153,'mec_end_day_seconds','55800'),(6256,1153,'mec_repeat_status','0'),(6257,1153,'mec_repeat_type',''),(6258,1153,'mec_repeat_interval',NULL),(6259,1153,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6260,1153,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-09-22\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-09-22\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6261,1153,'mec_source','google-calendar'),(6262,1153,'mec_gcal_ical_uid','CSVConvert1c48ff545f8d1632f16ea6395659496b'),(6263,1153,'mec_gcal_id','_8d9lcgrfdpr6asjk65hj8e36coqj8db671i32dhj69j32dj5c4r36e9l6oqjid1p6ph0'),(6264,1153,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6265,1153,'mec_g_recurrence_rule',''),(6266,1153,'mec_advanced_days',NULL),(6267,1153,'mec_imported_from_google','1'),(6268,1154,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6124,1146,'location',''),(6125,1146,'organizer',''),(6126,1146,'tag',''),(6127,1146,'author',''),(4732,972,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6401,1158,'mec_repeat_interval',NULL),(6402,1158,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6403,1158,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-01\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-01\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6404,1158,'mec_source','google-calendar'),(6405,1158,'mec_gcal_ical_uid','CSVConvert3f49f20760a5a656fbf96b44f870f7fe'),(6299,1155,'mec_dont_show_map','0'),(6298,1155,'mec_location_id','17'),(6297,1155,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4758,972,'_weforms_version','1.4.9'),(4749,972,'wpuf_form_settings','a:48:{s:11:\"redirect_to\";s:4:\"page\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:3:\"882\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:14:\"Submit Request\";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:1;s:26:\"multistep_progressbar_type\";s:12:\"step_by_step\";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:\"\";}'),(4750,972,'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:22:\"Submitter Notification\";s:7:\"subject\";s:45:\"[{form_name}] Submission Received #{entry_id}\";s:2:\"to\";s:21:\"{field:email_address}\";s:7:\"replyTo\";s:48:\"{field:email_address},contact@lantern-realty.com\";s:7:\"message\";s:410:\"<p>Thank you for your interest in improving the Lantern website. This email confirms that your request has been sent to our website developer. For simple changes, please allow 48-72 hours for completion. Larger, more complex changes will take longer.</p>\n<p>We will be in touch if there are questions about your request.</p>\n<p>Thanks,</p>\n<p>The Lantern Team</p>\n<p>Submission Details:</p>\n<p>{all_fields}</p>\";s:8:\"fromName\";s:30:\"Lantern Realty and Development\";s:11:\"fromAddress\";s:26:\"contant@lantern-realty.com\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:13:\"{admin_email}\";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:\"\";}}}}}'),(4751,972,'integrations','a:1:{s:5:\"slack\";O:8:\"stdClass\":2:{s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";}}'),(4752,989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4753,990,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4754,991,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4755,992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4756,993,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4757,994,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6300,1155,'mec_organizer_id','18'),(6301,1155,'mec_allday','0'),(6302,1155,'mec_hide_time','0'),(6303,1155,'mec_hide_end_time','0'),(6304,1155,'mec_start_date','2020-11-10'),(6305,1155,'mec_start_time_hour','3'),(6306,1155,'mec_start_time_minutes','00'),(6307,1155,'mec_start_time_ampm','PM'),(6308,1155,'mec_start_day_seconds','54000'),(6309,1155,'mec_end_date','2020-11-10'),(6310,1155,'mec_end_time_hour','4'),(6311,1155,'mec_end_time_minutes','30'),(6312,1155,'mec_end_time_ampm','PM'),(6313,1155,'mec_end_day_seconds','59400'),(6314,1155,'mec_repeat_status','0'),(6315,1155,'mec_repeat_type',''),(6316,1155,'mec_repeat_interval',NULL),(6317,1155,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6318,1155,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-10\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-10\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6319,1155,'mec_source','google-calendar'),(6320,1155,'mec_gcal_ical_uid','CSVConvert31f88b3385ed5ac9050659c75fd87112'),(6321,1155,'mec_gcal_id','_8d9lcgrfdpr6asjk6comce1oc8pj6e1lcli3aob374o3ac1m6ksm6dplcpi3gdph64p0'),(6322,1155,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6323,1155,'mec_g_recurrence_rule',''),(6324,1155,'mec_advanced_days',NULL),(6325,1155,'mec_imported_from_google','1'),(6326,1156,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6327,1156,'mec_location_id','17'),(6328,1156,'mec_dont_show_map','0'),(6329,1156,'mec_organizer_id','18'),(6330,1156,'mec_allday','0'),(6331,1156,'mec_hide_time','0'),(6332,1156,'mec_hide_end_time','0'),(6333,1156,'mec_start_date','2020-10-13'),(6334,1156,'mec_start_time_hour','2'),(6335,1156,'mec_start_time_minutes','00'),(6336,1156,'mec_start_time_ampm','PM'),(6337,1156,'mec_start_day_seconds','50400'),(6338,1156,'mec_end_date','2020-10-13'),(6339,1156,'mec_end_time_hour','4'),(6340,1156,'mec_end_time_minutes','00'),(6341,1156,'mec_end_time_ampm','PM'),(6342,1156,'mec_end_day_seconds','57600'),(6343,1156,'mec_repeat_status','0'),(6344,1156,'mec_repeat_type',''),(6345,1156,'mec_repeat_interval',NULL),(6346,1156,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6347,1156,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-13\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-13\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6348,1156,'mec_source','google-calendar'),(6349,1156,'mec_gcal_ical_uid','CSVConvert324da41635952b6753baaad7b1f840f5'),(6350,1156,'mec_gcal_id','_8d9lcgrfdpr6asjk6cp38p316gojccpl74qj4ohm6sqj6oj1c5gm8dr265j3gd1gcoqg'),(6351,1156,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6352,1156,'mec_g_recurrence_rule',''),(6353,1156,'mec_advanced_days',NULL),(6354,1157,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6355,1157,'mec_location_id','17'),(6356,1157,'mec_dont_show_map','0'),(6357,1157,'mec_organizer_id','18'),(6358,1157,'mec_allday','0'),(6359,1157,'mec_hide_time','0'),(6360,1157,'mec_hide_end_time','0'),(6361,1157,'mec_start_date','2020-11-17'),(6362,1157,'mec_start_time_hour','3'),(6363,1157,'mec_start_time_minutes','00'),(6364,1157,'mec_start_time_ampm','PM'),(6365,1157,'mec_start_day_seconds','54000'),(6366,1157,'mec_end_date','2020-11-17'),(6367,1157,'mec_end_time_hour','5'),(6368,1157,'mec_end_time_minutes','00'),(6369,1157,'mec_end_time_ampm','PM'),(6370,1157,'mec_end_day_seconds','61200'),(6371,1157,'mec_repeat_status','0'),(6372,1157,'mec_repeat_type',''),(6373,1157,'mec_repeat_interval',NULL),(6374,1157,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6375,1157,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-17\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-17\";s:4:\"hour\";s:1:\"5\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6376,1157,'mec_source','google-calendar'),(6377,1157,'mec_gcal_ical_uid','CSVConvert38218b985943087e1e4b926faf382caf'),(6378,1157,'mec_gcal_id','_8d9lcgrfdpr6asjk6cs34c9oc8sjgd9p6gpj0e1nckomad3274p3cpj1copjgcj3c5j0'),(6379,1157,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6380,1157,'mec_g_recurrence_rule',''),(6381,1157,'mec_advanced_days',NULL),(6382,1158,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6383,1158,'mec_location_id','17'),(6384,1158,'mec_dont_show_map','0'),(6385,1158,'mec_organizer_id','18'),(6386,1158,'mec_allday','0'),(6387,1158,'mec_hide_time','0'),(6388,1158,'mec_hide_end_time','0'),(6389,1158,'mec_start_date','2020-10-01'),(6390,1158,'mec_start_time_hour','2'),(6391,1158,'mec_start_time_minutes','00'),(6392,1158,'mec_start_time_ampm','PM'),(6393,1158,'mec_start_day_seconds','50400'),(6394,1158,'mec_end_date','2020-10-01'),(6395,1158,'mec_end_time_hour','3'),(6396,1158,'mec_end_time_minutes','30'),(6397,1158,'mec_end_time_ampm','PM'),(6398,1158,'mec_end_day_seconds','55800'),(6399,1158,'mec_repeat_status','0'),(6400,1158,'mec_repeat_type',''),(6270,1154,'mec_dont_show_map','0'),(6271,1154,'mec_organizer_id','18'),(6272,1154,'mec_allday','0'),(6273,1154,'mec_hide_time','0'),(6274,1154,'mec_hide_end_time','0'),(6275,1154,'mec_start_date','2020-11-05'),(6276,1154,'mec_start_time_hour','3'),(6277,1154,'mec_start_time_minutes','00'),(6278,1154,'mec_start_time_ampm','PM'),(6279,1154,'mec_start_day_seconds','54000'),(6280,1154,'mec_end_date','2020-11-05'),(6281,1154,'mec_end_time_hour','4'),(6282,1154,'mec_end_time_minutes','30'),(6283,1154,'mec_end_time_ampm','PM'),(6284,1154,'mec_end_day_seconds','59400'),(6285,1154,'mec_repeat_status','0'),(6286,1154,'mec_repeat_type',''),(6287,1154,'mec_repeat_interval',NULL),(6288,1154,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6289,1154,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-11-05\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-11-05\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6290,1154,'mec_source','google-calendar'),(6291,1154,'mec_gcal_ical_uid','CSVConvert1f552cc93fe86aeaac5517d13fa3294c'),(6292,1154,'mec_gcal_id','_8d9lcgrfdpr6asjk65j3ad9icdhjicr6cks3cob5c5gm6d9l64rm8c9jcpgj6chp6hhg'),(6293,1154,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6294,1154,'mec_g_recurrence_rule',''),(6295,1154,'mec_advanced_days',NULL),(6296,1154,'mec_imported_from_google','1'),(4766,882,'_genesis_noindex','1'),(4767,882,'_genesis_nofollow','1'),(4768,882,'_genesis_noarchive','1'),(4769,996,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4770,996,'_edit_lock','1602795338:1'),(4771,996,'_wp_page_template','template/template-onepage.php'),(4772,996,'_edit_last','1'),(4773,996,'fave_listing_page_content_area','0'),(4774,996,'fave_prop_no','9'),(4775,996,'fave_properties_sort','d_date'),(4776,996,'fave_listings_tabs','disable'),(4777,996,'fave_properties_min_beds','0'),(4778,996,'fave_properties_min_baths','0'),(4779,996,'fave_agency_orderby','None'),(4780,996,'fave_agency_order','ASC'),(4781,996,'fave_agent_orderby','None'),(4782,996,'fave_agent_order','ASC'),(4783,996,'fave_header_type','none'),(4784,996,'fave_page_header_image_opacity','0.35'),(4785,996,'fave_page_header_search','0'),(4786,996,'fave_header_full_screen','0'),(4787,996,'fave_adv_search_enable','global'),(4788,996,'fave_adv_search','hide'),(4789,996,'fave_adv_search_pos','under_menu'),(4790,996,'fave_page_title','show'),(4791,996,'fave_page_breadcrumb','show'),(4792,996,'fave_page_sidebar','right_sidebar'),(4793,996,'fave_page_background','yes'),(4794,996,'fave_main_menu_trans','no'),(4795,996,'slide_template','default'),(4796,996,'rs_page_bg_color','#ffffff'),(4797,996,'_wpb_vc_js_status','false'),(4798,996,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4799,998,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4800,998,'_edit_lock','1603043825:1'),(4801,998,'_wp_page_template','template/template-onepage.php'),(4802,998,'_edit_last','1'),(4803,998,'fave_listing_page_content_area','0'),(4804,998,'fave_prop_no','9'),(4805,998,'fave_properties_sort','d_date'),(4806,998,'fave_listings_tabs','disable'),(4807,998,'fave_properties_min_beds','0'),(4808,998,'fave_properties_min_baths','0'),(4809,998,'fave_agency_orderby','None'),(4810,998,'fave_agency_order','ASC'),(4811,998,'fave_agent_orderby','None'),(4812,998,'fave_agent_order','ASC'),(4813,998,'fave_header_type','none'),(4814,998,'fave_page_header_image_opacity','0.35'),(4815,998,'fave_page_header_search','0'),(4816,998,'fave_header_full_screen','0'),(4817,998,'fave_adv_search_enable','global'),(4818,998,'fave_adv_search','hide'),(4819,998,'fave_adv_search_pos','under_menu'),(4820,998,'fave_page_title','show'),(4821,998,'fave_page_breadcrumb','show'),(4822,998,'fave_page_sidebar','right_sidebar'),(4823,998,'fave_page_background','yes'),(4824,998,'fave_main_menu_trans','no'),(4825,998,'_genesis_noindex','1'),(4826,998,'_genesis_nofollow','1'),(4827,998,'_genesis_noarchive','1'),(4828,998,'slide_template','default'),(4829,998,'rs_page_bg_color','#ffffff'),(4830,998,'_wpb_vc_js_status','false'),(4831,998,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(4832,1000,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4833,1000,'_edit_lock','1603043827:1'),(4834,1000,'_wp_page_template','template/template-onepage.php'),(4835,1000,'_edit_last','1'),(4836,1000,'fave_listing_page_content_area','0'),(4837,1000,'fave_prop_no','9'),(4838,1000,'fave_properties_sort','d_date'),(4839,1000,'fave_listings_tabs','disable'),(4840,1000,'fave_properties_min_beds','0'),(4841,1000,'fave_properties_min_baths','0'),(4842,1000,'fave_agency_orderby','None'),(4843,1000,'fave_agency_order','ASC'),(4844,1000,'fave_agent_orderby','None'),(4845,1000,'fave_agent_order','ASC'),(4846,1000,'fave_header_type','none'),(4847,1000,'fave_page_header_image_opacity','0.35'),(4848,1000,'fave_page_header_search','0'),(4849,1000,'fave_header_full_screen','0'),(4850,1000,'fave_adv_search_enable','global'),(4851,1000,'fave_adv_search','hide'),(4852,1000,'fave_adv_search_pos','under_menu'),(4853,1000,'fave_page_title','show'),(4854,1000,'fave_page_breadcrumb','show'),(4855,1000,'fave_page_sidebar','right_sidebar'),(4856,1000,'fave_page_background','yes'),(4857,1000,'fave_main_menu_trans','no'),(4858,1000,'_genesis_noindex','1'),(4859,1000,'_genesis_nofollow','1'),(4860,1000,'_genesis_noarchive','1'),(4861,1000,'slide_template','default'),(4862,1000,'rs_page_bg_color','#ffffff'),(4863,1000,'_wpb_vc_js_status','false'),(4864,1000,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(6153,1148,'show_past_events','0'),(6154,1148,'sk-options','a:1:{s:9:\"timetable\";a:1:{s:20:\"next_previous_button\";i:1;}}'),(6155,1148,'sf-options','a:1:{s:9:\"timetable\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6156,1148,'sf_status','1'),(6157,1149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6158,1149,'label',''),(6159,1149,'category',''),(6160,1149,'location',''),(6161,1149,'organizer',''),(6162,1149,'tag',''),(6163,1149,'author',''),(6164,1149,'skin','tile'),(6165,1149,'show_past_events','0'),(6166,1149,'sk-options','a:1:{s:4:\"tile\";a:1:{s:20:\"next_previous_button\";i:1;}}'),(6167,1149,'sf-options','a:1:{s:4:\"tile\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6168,1149,'sf_status','1'),(6169,1150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6170,1150,'label',''),(6171,1150,'category',''),(6172,1150,'location',''),(6173,1150,'organizer',''),(6174,1150,'tag',''),(6175,1150,'author',''),(6176,1150,'skin','timeline'),(6177,1150,'show_past_events','0'),(6178,1150,'sk-options','a:1:{s:8:\"timeline\";a:1:{s:16:\"load_more_button\";i:1;}}'),(6179,1150,'sf-options','a:1:{s:8:\"timeline\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6180,1150,'sf_status','0'),(6181,1151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6182,1151,'mec_location_id','17'),(6183,1151,'mec_dont_show_map','0'),(6184,1151,'mec_organizer_id','18'),(6185,1151,'mec_allday','0'),(6186,1151,'mec_hide_time','0'),(6187,1151,'mec_hide_end_time','0'),(6188,1151,'mec_start_date','2020-10-05'),(6189,1151,'mec_start_time_hour','2'),(6190,1151,'mec_start_time_minutes','00'),(6191,1151,'mec_start_time_ampm','PM'),(6192,1151,'mec_start_day_seconds','50400'),(6193,1151,'mec_end_date','2020-10-05'),(6194,1151,'mec_end_time_hour','3'),(6195,1151,'mec_end_time_minutes','30'),(6196,1151,'mec_end_time_ampm','PM'),(6197,1151,'mec_end_day_seconds','55800'),(6198,1151,'mec_repeat_status','0'),(6199,1151,'mec_repeat_type',''),(6200,1151,'mec_repeat_interval',NULL),(6201,1151,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6202,1151,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-05\";s:4:\"hour\";s:1:\"2\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-05\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"30\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6203,1151,'mec_source','google-calendar'),(6204,1151,'mec_gcal_ical_uid','CSVConvert06082248a247c36703d17366f092f695'),(6205,1151,'mec_gcal_id','_8d9lcgrfdpr6asjk60r30e1i68q3go9i6grm6cpm6so36p1h6spjcdj660sj4phm74qg'),(6206,1151,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6207,1151,'mec_g_recurrence_rule',''),(6208,1151,'mec_advanced_days',NULL),(6209,1151,'mec_imported_from_google','1'),(6210,1152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6211,1152,'mec_location_id','19'),(6212,1152,'mec_dont_show_map','0'),(6213,1152,'mec_organizer_id','18'),(6214,1152,'mec_allday','0'),(6215,1152,'mec_hide_time','0'),(6216,1152,'mec_hide_end_time','0'),(6217,1152,'mec_start_date','2020-10-07'),(6218,1152,'mec_start_time_hour','3'),(6219,1152,'mec_start_time_minutes','00'),(6220,1152,'mec_start_time_ampm','PM'),(6221,1152,'mec_start_day_seconds','54000'),(6222,1152,'mec_end_date','2020-10-07'),(6223,1152,'mec_end_time_hour','4'),(6224,1152,'mec_end_time_minutes','00'),(6225,1152,'mec_end_time_ampm','PM'),(6226,1152,'mec_end_day_seconds','57600'),(6227,1152,'mec_repeat_status','0'),(6228,1152,'mec_repeat_type',''),(6229,1152,'mec_repeat_interval',NULL),(6230,1152,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(6231,1152,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-07\";s:4:\"hour\";s:1:\"3\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-07\";s:4:\"hour\";s:1:\"4\";s:7:\"minutes\";s:2:\"00\";s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6232,1152,'mec_source','google-calendar'),(6233,1152,'mec_gcal_ical_uid','CSVConvert0c40d14a0d8949212a38756cf75ded42'),(6234,1152,'mec_gcal_id','_8d9lcgrfdpr6asjk61hj8c3464q62c3470sj8e9i64p62cpo6sqjcor66sqm8pb46gp0'),(6235,1152,'mec_gcal_calendar_id','7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com'),(6236,1152,'mec_g_recurrence_rule',''),(6237,1152,'mec_advanced_days',NULL),(6238,1152,'mec_imported_from_google','1'),(6239,1153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6240,1153,'mec_location_id','17'),(6241,1153,'mec_dont_show_map','0'),(6242,1153,'mec_organizer_id','18'),(6243,1153,'mec_allday','0'),(6244,1153,'mec_hide_time','0'),(6152,1148,'skin','timetable'),(6150,1148,'tag',''),(6151,1148,'author',''),(6149,1148,'organizer',''),(6128,1146,'skin','masonry'),(6129,1146,'show_past_events','0'),(6130,1146,'sk-options','a:1:{s:7:\"masonry\";a:2:{s:5:\"limit\";i:24;s:9:\"filter_by\";s:8:\"category\";}}'),(6131,1146,'sf-options','a:1:{s:7:\"masonry\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6132,1146,'sf_status','0'),(6133,1147,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6134,1147,'label',''),(6135,1147,'category',''),(6136,1147,'location',''),(6137,1147,'organizer',''),(6138,1147,'tag',''),(6139,1147,'author',''),(6140,1147,'skin','agenda'),(6141,1147,'show_past_events','0'),(6142,1147,'sk-options','a:1:{s:6:\"agenda\";a:1:{s:16:\"load_more_button\";i:1;}}'),(6143,1147,'sf-options','a:1:{s:6:\"agenda\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6144,1147,'sf_status','1'),(6145,1148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6146,1148,'label',''),(6147,1148,'category',''),(6148,1148,'location',''),(6024,1137,'sf_status','1'),(6025,1138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6026,1138,'label',''),(6027,1138,'category',''),(6028,1138,'location',''),(6029,1138,'organizer',''),(6030,1138,'tag',''),(6031,1138,'author',''),(6032,1138,'skin','weekly_view'),(6033,1138,'show_past_events','1'),(6034,1138,'sk-options','a:1:{s:11:\"weekly_view\";a:2:{s:15:\"start_date_type\";s:19:\"start_current_month\";s:20:\"next_previous_button\";i:1;}}'),(6035,1138,'sf-options','a:1:{s:11:\"weekly_view\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6036,1138,'sf_status','1'),(6037,1139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6038,1139,'label',''),(6039,1139,'category',''),(6040,1139,'location',''),(6041,1139,'organizer',''),(6042,1139,'tag',''),(6043,1139,'author',''),(6044,1139,'skin','daily_view'),(6045,1139,'show_past_events','1'),(6046,1139,'sk-options','a:1:{s:10:\"daily_view\";a:2:{s:15:\"start_date_type\";s:19:\"start_current_month\";s:20:\"next_previous_button\";i:1;}}'),(6047,1139,'sf-options','a:1:{s:10:\"daily_view\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6048,1139,'sf_status','1'),(6049,1140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6050,1140,'label',''),(6051,1140,'category',''),(6052,1140,'location',''),(6053,1140,'organizer',''),(6054,1140,'tag',''),(6055,1140,'author',''),(6056,1140,'skin','map'),(6057,1140,'show_past_events','1'),(6058,1140,'sk-options','a:1:{s:3:\"map\";a:1:{s:5:\"limit\";i:200;}}'),(6059,1140,'sf-options','a:1:{s:3:\"map\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6060,1140,'sf_status','1'),(6061,1141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6062,1141,'label',''),(6063,1141,'category',''),(6064,1141,'location',''),(6065,1141,'organizer',''),(6066,1141,'tag',''),(6067,1141,'author',''),(6068,1141,'skin','list'),(6069,1141,'show_past_events','0'),(6070,1141,'sk-options','a:1:{s:4:\"list\";a:1:{s:16:\"load_more_button\";i:1;}}'),(6071,1141,'sf-options','a:1:{s:4:\"list\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6072,1141,'sf_status','1'),(6073,1142,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6074,1142,'label',''),(6075,1142,'category',''),(6076,1142,'location',''),(6077,1142,'organizer',''),(6078,1142,'tag',''),(6079,1142,'author',''),(6080,1142,'skin','grid'),(6081,1142,'show_past_events','0'),(6082,1142,'sk-options','a:1:{s:4:\"grid\";a:1:{s:16:\"load_more_button\";i:1;}}'),(6083,1142,'sf-options','a:1:{s:4:\"grid\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6084,1142,'sf_status','1'),(6085,1143,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6086,1143,'label',''),(6087,1143,'category',''),(6088,1143,'location',''),(6089,1143,'organizer',''),(6090,1143,'tag',''),(6091,1143,'author',''),(6092,1143,'skin','carousel'),(6093,1143,'show_past_events','0'),(6094,1143,'sk-options','a:1:{s:8:\"carousel\";a:2:{s:5:\"count\";i:3;s:5:\"limit\";i:12;}}'),(6095,1143,'sf-options','a:1:{s:8:\"carousel\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6096,1143,'sf_status','0'),(6097,1144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6098,1144,'label',''),(6099,1144,'category',''),(6100,1144,'location',''),(6101,1144,'organizer',''),(6102,1144,'tag',''),(6103,1144,'author',''),(6104,1144,'skin','countdown'),(6105,1144,'show_past_events','0'),(6106,1144,'sk-options','a:1:{s:9:\"countdown\";a:2:{s:5:\"style\";s:6:\"style3\";s:8:\"event_id\";s:2:\"-1\";}}'),(6107,1144,'sf-options','a:1:{s:9:\"countdown\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6108,1144,'sf_status','0'),(6109,1145,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6110,1145,'label',''),(6111,1145,'category',''),(6112,1145,'location',''),(6113,1145,'organizer',''),(6114,1145,'tag',''),(6115,1145,'author',''),(6116,1145,'skin','slider'),(6117,1145,'show_past_events','0'),(6118,1145,'sk-options','a:1:{s:6:\"slider\";a:3:{s:5:\"style\";s:2:\"t1\";s:5:\"limit\";i:6;s:8:\"autoplay\";i:3000;}}'),(6119,1145,'sf-options','a:1:{s:6:\"slider\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6120,1145,'sf_status','0'),(6121,1146,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6122,1146,'label',''),(6123,1146,'category',''),(5908,1131,'mec_color','dd823b'),(5909,1132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5910,1132,'mec_location_id','1'),(5911,1132,'mec_dont_show_map','0'),(5912,1132,'mec_organizer_id','1'),(5913,1132,'mec_allday','0'),(5914,1132,'mec_hide_time','0'),(5915,1132,'mec_hide_end_time','0'),(5916,1132,'mec_start_date','2020-10-18'),(5917,1132,'mec_start_time_hour','8'),(5918,1132,'mec_start_time_minutes','0'),(5919,1132,'mec_start_time_ampm','AM'),(5920,1132,'mec_start_day_seconds','28800'),(5921,1132,'mec_end_date','2020-10-18'),(5922,1132,'mec_end_time_hour','6'),(5923,1132,'mec_end_time_minutes','0'),(5924,1132,'mec_end_time_ampm','PM'),(5925,1132,'mec_end_day_seconds','64800'),(5926,1132,'mec_repeat_status','1'),(5927,1132,'mec_repeat_type','daily'),(5928,1132,'mec_repeat_interval','3'),(5929,1132,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5930,1132,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-18\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-18\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(5931,1132,'mec_color','a3b745'),(5932,1133,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5933,1133,'mec_location_id','1'),(5934,1133,'mec_dont_show_map','0'),(5935,1133,'mec_organizer_id','1'),(5936,1133,'mec_allday','0'),(5937,1133,'mec_hide_time','0'),(5938,1133,'mec_hide_end_time','0'),(5939,1133,'mec_start_date','2020-10-19'),(5940,1133,'mec_start_time_hour','8'),(5941,1133,'mec_start_time_minutes','0'),(4888,996,'_elementor_edit_mode','builder'),(4889,996,'_elementor_template_type','wp-page'),(4890,996,'_elementor_version','3.0.9'),(4891,998,'_elementor_edit_mode','builder'),(4893,996,'_elementor_data','[{\"id\":\"7ca5b2e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25b9683\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"09c676a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a2af44\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fe5727f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8486b8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Website Change Requests\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f811b5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"68764bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d7b73a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"bc4ee7f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"ebda811\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ee5e10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Thank you for your care in keeping our website up-to-date.<\\/h4><p>\\u00a0 \\u00a0 \\u00a0Please use this form to submit change requests directly to our web developer. Things to submit in this form can include, but are not limited to: additions of special content, information corrects, unique ideas, and more. For basic corrections, please allow 48-72 hours to see the changes update. Larger changes may take longer.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ad9dfdd\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"972\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-weforms_widget\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6023,1137,'sf-options','a:1:{s:12:\"monthly_view\";a:2:{s:8:\"category\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6022,1137,'sk-options','a:1:{s:12:\"monthly_view\";a:2:{s:15:\"start_date_type\";s:19:\"start_current_month\";s:20:\"next_previous_button\";i:1;}}'),(6021,1137,'show_past_events','1'),(5810,188,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.576052614503595350470277480781078338623046875;s:5:\"bytes\";i:81599;s:11:\"size_before\";i:601051;s:10:\"size_after\";i:519452;s:4:\"time\";d:0.1900000000000000299760216648792265914380550384521484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3705;s:11:\"size_before\";i:25974;s:10:\"size_after\";i:22269;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7585;s:11:\"size_before\";i:60287;s:10:\"size_after\";i:52702;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2714;s:11:\"size_before\";i:18959;s:10:\"size_after\";i:16245;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10173;s:11:\"size_before\";i:84191;s:10:\"size_after\";i:74018;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:10503;s:11:\"size_before\";i:87748;s:10:\"size_after\";i:77245;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:22402;s:11:\"size_before\";i:125090;s:10:\"size_after\";i:102688;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:12318;s:11:\"size_before\";i:101569;s:10:\"size_after\";i:89251;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2701;s:11:\"size_before\";i:18903;s:10:\"size_after\";i:16202;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:9498;s:11:\"size_before\";i:78330;s:10:\"size_after\";i:68832;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5853,490,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.650448425014051423431737930513918399810791015625;s:5:\"bytes\";i:141594;s:11:\"size_before\";i:1636840;s:10:\"size_after\";i:1495246;s:4:\"time\";d:0.49000000000000010214051826551440171897411346435546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:10;s:5:\"bytes\";i:1732;s:11:\"size_before\";i:17315;s:10:\"size_after\";i:15583;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4813;s:11:\"size_before\";i:52417;s:10:\"size_after\";i:47604;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:1623;s:11:\"size_before\";i:15833;s:10:\"size_after\";i:14210;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:19072;s:11:\"size_before\";i:257660;s:10:\"size_after\";i:238588;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:4680;s:11:\"size_before\";i:63287;s:10:\"size_after\";i:58607;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:5133;s:11:\"size_before\";i:66457;s:10:\"size_after\";i:61324;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:8652;s:11:\"size_before\";i:117749;s:10:\"size_after\";i:109097;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:27742;s:11:\"size_before\";i:168551;s:10:\"size_after\";i:140809;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:23902;s:11:\"size_before\";i:313063;s:10:\"size_after\";i:289161;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:19197;s:11:\"size_before\";i:261647;s:10:\"size_after\";i:242450;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6436;s:11:\"size_before\";i:80373;s:10:\"size_after\";i:73937;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1191;s:11:\"size_before\";i:12919;s:10:\"size_after\";i:11728;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:7236;s:11:\"size_before\";i:86503;s:10:\"size_after\";i:79267;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:10185;s:11:\"size_before\";i:123066;s:10:\"size_after\";i:112881;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4901,998,'_elementor_template_type','wp-page'),(4902,998,'_elementor_version','3.0.11'),(5942,1133,'mec_start_time_ampm','AM'),(5943,1133,'mec_start_day_seconds','28800'),(5944,1133,'mec_end_date','2020-10-19'),(5945,1133,'mec_end_time_hour','6'),(5946,1133,'mec_end_time_minutes','0'),(5947,1133,'mec_end_time_ampm','PM'),(5948,1133,'mec_end_day_seconds','64800'),(5949,1133,'mec_repeat_status','1'),(5950,1133,'mec_repeat_type','weekly'),(5951,1133,'mec_repeat_interval','7'),(5952,1133,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5953,1133,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-19\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-19\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(5954,1133,'mec_color','e14d43'),(5955,1134,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5956,1134,'mec_location_id','1'),(5957,1134,'mec_dont_show_map','0'),(5958,1134,'mec_organizer_id','1'),(5959,1134,'mec_allday','0'),(5960,1134,'mec_hide_time','0'),(5961,1134,'mec_hide_end_time','0'),(5962,1134,'mec_start_date','2020-10-27'),(5963,1134,'mec_start_time_hour','8'),(5964,1134,'mec_start_time_minutes','0'),(5965,1134,'mec_start_time_ampm','AM'),(5966,1134,'mec_start_day_seconds','28800'),(5967,1134,'mec_end_date','2020-10-27'),(5968,1134,'mec_end_time_hour','6'),(5969,1134,'mec_end_time_minutes','0'),(5970,1134,'mec_end_time_ampm','PM'),(5971,1134,'mec_end_day_seconds','64800'),(5972,1134,'mec_repeat_status','1'),(5973,1134,'mec_repeat_type','monthly'),(5974,1134,'mec_repeat_interval',NULL),(5975,1134,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5976,1134,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-27\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-27\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(5977,1134,'mec_color','00a0d2'),(5978,1135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5979,1135,'mec_location_id','1'),(5980,1135,'mec_dont_show_map','0'),(5981,1135,'mec_organizer_id','1'),(5982,1135,'mec_allday','0'),(5983,1135,'mec_hide_time','0'),(5984,1135,'mec_hide_end_time','0'),(5985,1135,'mec_start_date','2020-08-20'),(5986,1135,'mec_start_time_hour','8'),(5987,1135,'mec_start_time_minutes','0'),(5988,1135,'mec_start_time_ampm','AM'),(5989,1135,'mec_start_day_seconds','28800'),(5990,1135,'mec_end_date','2020-08-21'),(5991,1135,'mec_end_time_hour','6'),(5992,1135,'mec_end_time_minutes','0'),(5993,1135,'mec_end_time_ampm','PM'),(5994,1135,'mec_end_day_seconds','64800'),(5995,1135,'mec_repeat_status','1'),(5996,1135,'mec_repeat_type','yearly'),(5997,1135,'mec_repeat_interval',NULL),(5998,1135,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5999,1135,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-08-20\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-08-21\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(6000,1135,'mec_color','fdd700'),(6001,1136,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6002,1136,'label',''),(6003,1136,'category',''),(6004,1136,'location',''),(6005,1136,'organizer',''),(6006,1136,'tag',''),(6007,1136,'author',''),(6008,1136,'skin','full_calendar'),(6009,1136,'show_past_events','1'),(6010,1136,'sk-options','a:1:{s:13:\"full_calendar\";a:6:{s:15:\"start_date_type\";s:5:\"today\";s:12:\"default_view\";s:4:\"list\";s:7:\"monthly\";i:1;s:6:\"weekly\";i:1;s:5:\"daily\";i:1;s:4:\"list\";i:1;}}'),(6011,1136,'sf-options','a:1:{s:13:\"full_calendar\";a:2:{s:12:\"month_filter\";a:1:{s:4:\"type\";s:8:\"dropdown\";}s:11:\"text_search\";a:1:{s:4:\"type\";s:10:\"text_input\";}}}'),(6012,1136,'sf_status','1'),(6013,1137,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6014,1137,'label',''),(6015,1137,'category',''),(6016,1137,'location',''),(6017,1137,'organizer',''),(6018,1137,'tag',''),(6019,1137,'author',''),(6020,1137,'skin','monthly_view'),(5906,1131,'mec_certain_weekdays','a:1:{i:0;s:0:\"\";}'),(5907,1131,'mec_date','a:7:{s:5:\"start\";a:4:{s:4:\"date\";s:10:\"2020-10-23\";s:4:\"hour\";i:8;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"AM\";}s:3:\"end\";a:4:{s:4:\"date\";s:10:\"2020-10-25\";s:4:\"hour\";i:6;s:7:\"minutes\";i:0;s:4:\"ampm\";s:2:\"PM\";}s:6:\"repeat\";a:0:{}s:6:\"allday\";i:0;s:9:\"hide_time\";i:0;s:13:\"hide_end_time\";i:0;s:7:\"comment\";s:0:\"\";}'),(4912,972,'_weforms_view_count','209'),(4913,998,'_elementor_data','[{\"id\":\"e50ad42\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f96e2a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242c5a7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35266fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d65fa18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"68ba931\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Lantern Logos\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd5833b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"8ae74c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8808183\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"442cfd6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Your one stop shop for all Lantern branding and media.<\\/h4><p style=\\\"text-align: center;\\\">If you feel something is missing, please use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request an addition.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b86fdd0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"d0c83e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"caption_source\":\"attachment\",\"link_to\":\"file\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7652a2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/lantern_transparent.png\",\"id\":1009},\"align\":\"center\",\"caption_source\":\"attachment\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f48781e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/lantern_LOGO_Square-2.jpg\",\"id\":1010},\"caption_source\":\"attachment\",\"link_to\":\"file\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"081bbe0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signs and Business Cards\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b1a1f50\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"73b2899\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"969ab91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><strong>Business Card Vendor:<\\/strong><\\/div><div>Omega Graphics<\\/div><div>293 Brookdale Street, Kannapolis, NC 28083<\\/div><div>Phone: (704) 933-5715<\\/div><div>\\u00a0<\\/div><div>Reference Business Card<br \\/>2 Sided, Full Color, 14pt UV Coated<\\/div><div>\\u00a0<\\/div><div>Online Vendor:<\\/div><p><a href=\\\"https:\\/\\/www.houseofmagnets.com\\/\\\">https:\\/\\/www.houseofmagnets.com\\/<\\/a><\\/p><p>Great for:<\\/p><ul><li>Business Cards<\\/li><li>Magnets<\\/li><li>Apparel<\\/li><li>Signs<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0fd31d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6e054ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/LANTERN_BC_cmp.jpg\",\"id\":906},\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2b9bc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"90752bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"528f302\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><strong>Sign Vendor:<\\/strong><\\/div><div>Omega Graphics<\\/div><div>293 Brookdale Street, Kannapolis, NC 28083<\\/div><div>Phone: (704) 933-5715<\\/div><div>\\u00a0<\\/div><div>Reference Information<\\/div>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79f4e17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4f3ab8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Yard-signs-All-8-17-08.jpg\",\"id\":910},\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cbbdd1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"fb89be7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1a702\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7d1ee4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Email Signature\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"af82c03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #0b5394;\\\"><b>John Smith\\u00a0<\\/b>\\n<\\/span><\\/div>\\n<div>\\n<div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #0b5394;\\\"><b>Lantern Realty &amp; Development<\\/b><\\/span><\\/div>\\n<div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #000000;\\\"><i>Licensed Realtor<\\/i>\\n<\\/span><\\/div>\\n<div><span style=\\\"font-family: garamond, times new roman, serif;\\\"><span style=\\\"color: #000000;\\\"><b>Phone: (555) 555-5555<\\/b>\\u00a0<\\/span>\\n<\\/span><\\/div>\\n<\\/div>\\n<div><span style=\\\"font-family: garamond, times new roman, serif;\\\"><a href=\\\"https:\\/\\/lantern-realty.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=https:\\/\\/lantern-realty.com\\/&amp;source=gmail&amp;ust=1602518659720000&amp;usg=AFQjCNHqdvTLiGoDEvr-Znne2j_FeROb2Q\\\">Let Us Guide You Home<\\/a>\\n<\\/span><\\/div>\\n<div><img class=\\\"CToWUd\\\" src=\\\"https:\\/\\/ci3.googleusercontent.com\\/proxy\\/74nNqDIzJuR_wWjaTkJvrx5eip9Ni17jksYQSrMkwfZfpbCBw9NkOLtcpopvST_U1bIZr7COpojscD2oXuQPL5y-vPib9iU40jAZT3zGFBKsC7_lBAFnNsSboEgRzyXI7ZCSUEGc2besDA5DjHmzGSwVqgD0GnIBkw=s0-d-e1-ft#https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-1-e1535144736200-1024x388.jpg\\\" width=\\\"200\\\" height=\\\"75\\\" \\/><\\/div>\\n<div><i><b><span style=\\\"color: #0b5394;\\\"><span style=\\\"font-family: garamond, times new roman, serif;\\\">Proudly Servi<\\/span><span style=\\\"font-family: garamond, times new roman, serif;\\\">ng Cabarrus, Rowan, Stanly, Iredell, Mecklenburg and surrounding\\u00a0areas<\\/span><\\/span><\\/b><\\/i><\\/div>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ce178e\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5905,1131,'mec_repeat_interval',NULL),(5904,1131,'mec_repeat_type',''),(5903,1131,'mec_repeat_status','0'),(5890,1131,'mec_allday','0'),(5891,1131,'mec_hide_time','0'),(5892,1131,'mec_hide_end_time','0'),(5893,1131,'mec_start_date','2020-10-23'),(5894,1131,'mec_start_time_hour','8'),(5895,1131,'mec_start_time_minutes','0'),(5896,1131,'mec_start_time_ampm','AM'),(5897,1131,'mec_start_day_seconds','28800'),(5898,1131,'mec_end_date','2020-10-25'),(5899,1131,'mec_end_time_hour','6'),(5900,1131,'mec_end_time_minutes','0'),(5901,1131,'mec_end_time_ampm','PM'),(5902,1131,'mec_end_day_seconds','64800'),(4928,1009,'_wp_attached_file','2020/10/lantern_transparent.png'),(4929,1009,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2174;s:6:\"height\";i:776;s:4:\"file\";s:31:\"2020/10/lantern_transparent.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-1024x366.png\";s:5:\"width\";i:1024;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-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:31:\"lantern_transparent-768x274.png\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-1536x548.png\";s:5:\"width\";i:1536;s:6:\"height\";i:548;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-2048x731.png\";s:5:\"width\";i:2048;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-1170x776.png\";s:5:\"width\";i:1170;s:6:\"height\";i:776;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:32:\"lantern_transparent-1681x600.png\";s:5:\"width\";i:1681;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:30:\"lantern_transparent-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:31:\"lantern_transparent-496x177.png\";s:5:\"width\";i:496;s:6:\"height\";i:177;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:{}}}'),(5886,1131,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5887,1131,'mec_location_id','1'),(5888,1131,'mec_dont_show_map','0'),(5889,1131,'mec_organizer_id','1'),(4930,1010,'_wp_attached_file','2020/10/lantern_LOGO_Square-2-e1602507710568.jpg'),(4931,1010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1597;s:6:\"height\";i:1274;s:4:\"file\";s:48:\"2020/10/lantern_LOGO_Square-2-e1602507710568.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"lantern_LOGO_Square-2-e1602507710568-1024x817.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:817;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-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:\"lantern_LOGO_Square-2-e1602507710568-768x613.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"lantern_LOGO_Square-2-e1602507710568-1536x1225.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:49:\"lantern_LOGO_Square-2-e1602507710568-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-752x600.jpg\";s:5:\"width\";i:752;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:47:\"lantern_LOGO_Square-2-e1602507710568-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:48:\"lantern_LOGO_Square-2-e1602507710568-496x396.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(4941,1013,'_wp_attached_file','2020/10/Lantern-Logo.jpeg'),(4942,1013,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:740;s:4:\"file\";s:25:\"2020/10/Lantern-Logo.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-300x173.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Lantern-Logo-1024x592.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-150x150.jpeg\";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:25:\"Lantern-Logo-768x444.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:26:\"Lantern-Logo-1170x740.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:26:\"Lantern-Logo-1038x600.jpeg\";s:5:\"width\";i:1038;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:24:\"Lantern-Logo-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:25:\"Lantern-Logo-496x287.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5885,602,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.90102212010753390813988517038524150848388671875;s:5:\"bytes\";i:73474;s:11:\"size_before\";i:742085;s:10:\"size_after\";i:668611;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:5930;s:11:\"size_before\";i:63374;s:10:\"size_after\";i:57444;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2091;s:11:\"size_before\";i:21975;s:10:\"size_after\";i:19884;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1990;s:11:\"size_before\";i:20834;s:10:\"size_after\";i:18844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6734;s:11:\"size_before\";i:69657;s:10:\"size_after\";i:62923;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:7179;s:11:\"size_before\";i:73821;s:10:\"size_after\";i:66642;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9515;s:11:\"size_before\";i:91982;s:10:\"size_after\";i:82467;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12149;s:11:\"size_before\";i:118033;s:10:\"size_after\";i:105884;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:8241;s:11:\"size_before\";i:83582;s:10:\"size_after\";i:75341;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1665;s:11:\"size_before\";i:16772;s:10:\"size_after\";i:15107;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7645;s:11:\"size_before\";i:80282;s:10:\"size_after\";i:72637;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:10335;s:11:\"size_before\";i:101773;s:10:\"size_after\";i:91438;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5811,192,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.95926673863322520219298894517123699188232421875;s:5:\"bytes\";i:188730;s:11:\"size_before\";i:2106534;s:10:\"size_after\";i:1917804;s:4:\"time\";d:0.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2573;s:11:\"size_before\";i:22003;s:10:\"size_after\";i:19430;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3274;s:11:\"size_before\";i:27259;s:10:\"size_after\";i:23985;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12743;s:11:\"size_before\";i:125297;s:10:\"size_after\";i:112554;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:19562;s:11:\"size_before\";i:196579;s:10:\"size_after\";i:177017;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1156;s:11:\"size_before\";i:9007;s:10:\"size_after\";i:7851;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:23509;s:11:\"size_before\";i:261453;s:10:\"size_after\";i:237944;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:7672;s:11:\"size_before\";i:75307;s:10:\"size_after\";i:67635;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7868;s:11:\"size_before\";i:76835;s:10:\"size_after\";i:68967;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12449;s:11:\"size_before\";i:134060;s:10:\"size_after\";i:121611;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:17750;s:11:\"size_before\";i:188726;s:10:\"size_after\";i:170976;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:237944;s:10:\"size_after\";i:237944;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:43961;s:11:\"size_before\";i:413146;s:10:\"size_after\";i:369185;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7820;s:11:\"size_before\";i:84444;s:10:\"size_after\";i:76624;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2029;s:11:\"size_before\";i:17167;s:10:\"size_after\";i:15138;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4165;s:11:\"size_before\";i:35156;s:10:\"size_after\";i:30991;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:22199;s:11:\"size_before\";i:202151;s:10:\"size_after\";i:179952;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4951,1010,'_edit_lock','1602507719:1'),(4952,1010,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1598;s:6:\"height\";i:1278;s:4:\"file\";s:25:\"lantern_LOGO_Square-2.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:34:\"lantern_LOGO_Square-2-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:35:\"lantern_LOGO_Square-2-1536x1228.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-gallery-orig\";a:4:{s:4:\"file\";s:34:\"lantern_LOGO_Square-2-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-1-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-4-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"houzez-item-image-6-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"houzez-variable-gallery-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-750x600.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-map-info-orig\";a:4:{s:4:\"file\";s:32:\"lantern_LOGO_Square-2-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"houzez-image_masonry-orig\";a:4:{s:4:\"file\";s:33:\"lantern_LOGO_Square-2-496x397.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(5884,599,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.54686629094000949180554016493260860443115234375;s:5:\"bytes\";i:622607;s:11:\"size_before\";i:6521585;s:10:\"size_after\";i:5898978;s:4:\"time\";d:1.670000000000000373034936274052597582340240478515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6050;s:11:\"size_before\";i:62469;s:10:\"size_after\";i:56419;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:55135;s:11:\"size_before\";i:599281;s:10:\"size_after\";i:544146;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1725;s:11:\"size_before\";i:18947;s:10:\"size_after\";i:17222;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:36277;s:11:\"size_before\";i:377645;s:10:\"size_after\";i:341368;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:112744;s:11:\"size_before\";i:1200298;s:10:\"size_after\";i:1087554;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:184599;s:11:\"size_before\";i:1896018;s:10:\"size_after\";i:1711419;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1685;s:11:\"size_before\";i:18512;s:10:\"size_after\";i:16827;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:39061;s:11:\"size_before\";i:413417;s:10:\"size_after\";i:374356;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6714;s:11:\"size_before\";i:70126;s:10:\"size_after\";i:63412;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7310;s:11:\"size_before\";i:74409;s:10:\"size_after\";i:67099;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:13099;s:11:\"size_before\";i:131488;s:10:\"size_after\";i:118389;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21924;s:11:\"size_before\";i:223710;s:10:\"size_after\";i:201786;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:47360;s:11:\"size_before\";i:507329;s:10:\"size_after\";i:459969;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:45604;s:11:\"size_before\";i:486439;s:10:\"size_after\";i:440835;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8306;s:11:\"size_before\";i:84456;s:10:\"size_after\";i:76150;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1331;s:11:\"size_before\";i:14336;s:10:\"size_after\";i:13005;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8408;s:11:\"size_before\";i:87001;s:10:\"size_after\";i:78593;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:14529;s:11:\"size_before\";i:148122;s:10:\"size_after\";i:133593;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:10746;s:11:\"size_before\";i:107582;s:10:\"size_after\";i:96836;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4991,1000,'_elementor_edit_mode','builder'),(4992,1000,'_elementor_template_type','wp-page'),(4993,1000,'_elementor_version','3.0.9'),(4994,1000,'_elementor_data','[{\"id\":\"34074bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"48b0487\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f12da51\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c4485cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fd67c59\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b60c62\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Documents\",\"size\":\"xxl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"de08fa1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4ec0e57\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1fee\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ed4d7e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0cb397a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Browse helpful and commonly used documents.<\\/p><p style=\\\"text-align: center;\\\">[wpdocs breadcrumb=\\\"true\\\" view=\\\"list\\\"]<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7679bf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">If you have ideas for useful additions, please use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">website change request<\\/a> link to send in your recommendation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2de2f39\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Website Change Request\",\"align\":\"center\",\"size\":\"lg\",\"selected_icon\":{\"value\":\"fas fa-laptop-code\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0ccb806\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"700b04f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6166b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fd666bd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5883,596,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.669550121605961834347908734343945980072021484375;s:5:\"bytes\";i:102126;s:11:\"size_before\";i:1177985;s:10:\"size_after\";i:1075859;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4261;s:11:\"size_before\";i:49145;s:10:\"size_after\";i:44884;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1592;s:11:\"size_before\";i:17855;s:10:\"size_after\";i:16263;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1545;s:11:\"size_before\";i:15141;s:10:\"size_after\";i:13596;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:15314;s:11:\"size_before\";i:174847;s:10:\"size_after\";i:159533;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:5427;s:11:\"size_before\";i:61778;s:10:\"size_after\";i:56351;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5761;s:11:\"size_before\";i:65171;s:10:\"size_after\";i:59410;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8079;s:11:\"size_before\";i:96835;s:10:\"size_after\";i:88756;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:10426;s:11:\"size_before\";i:122041;s:10:\"size_after\";i:111615;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:15058;s:11:\"size_before\";i:174352;s:10:\"size_after\";i:159294;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6683;s:11:\"size_before\";i:78195;s:10:\"size_after\";i:71512;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1194;s:11:\"size_before\";i:13150;s:10:\"size_after\";i:11956;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8597;s:11:\"size_before\";i:96538;s:10:\"size_after\";i:87941;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:9444;s:11:\"size_before\";i:114064;s:10:\"size_after\";i:104620;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8745;s:11:\"size_before\";i:98873;s:10:\"size_after\";i:90128;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5866,542,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.28304841167523431266772604431025683879852294921875;s:5:\"bytes\";i:204842;s:11:\"size_before\";i:2812586;s:10:\"size_after\";i:2607744;s:4:\"time\";d:0.80000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1662;s:11:\"size_before\";i:17338;s:10:\"size_after\";i:15676;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4843;s:11:\"size_before\";i:56877;s:10:\"size_after\";i:52034;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20034;s:11:\"size_before\";i:311856;s:10:\"size_after\";i:291822;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:35688;s:11:\"size_before\";i:538554;s:10:\"size_after\";i:502866;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15676;s:10:\"size_after\";i:15676;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:25443;s:11:\"size_before\";i:337413;s:10:\"size_after\";i:311970;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4862;s:11:\"size_before\";i:62033;s:10:\"size_after\";i:57171;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:5272;s:11:\"size_before\";i:65593;s:10:\"size_after\";i:60321;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8261;s:11:\"size_before\";i:111577;s:10:\"size_after\";i:103316;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:13468;s:11:\"size_before\";i:184056;s:10:\"size_after\";i:170588;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:30906;s:11:\"size_before\";i:429913;s:10:\"size_after\";i:399007;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:30946;s:11:\"size_before\";i:387713;s:10:\"size_after\";i:356767;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5994;s:11:\"size_before\";i:74113;s:10:\"size_after\";i:68119;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1296;s:11:\"size_before\";i:13474;s:10:\"size_after\";i:12178;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6021;s:11:\"size_before\";i:74171;s:10:\"size_after\";i:68150;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:10146;s:11:\"size_before\";i:132229;s:10:\"size_after\";i:122083;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5862,532,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.5776593166949357538442200166173279285430908203125;s:5:\"bytes\";i:3894;s:11:\"size_before\";i:45397;s:10:\"size_after\";i:41503;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1424;s:11:\"size_before\";i:16821;s:10:\"size_after\";i:15397;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1340;s:11:\"size_before\";i:15950;s:10:\"size_after\";i:14610;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1130;s:11:\"size_before\";i:12626;s:10:\"size_after\";i:11496;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5863,536,'wp-smush-animated','1'),(5864,536,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.021239416495303191367849393600408802740275859832763671875;s:5:\"bytes\";i:22;s:11:\"size_before\";i:103581;s:10:\"size_after\";i:103559;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11068;s:10:\"size_after\";i:11068;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.040000000000000000832667268468867405317723751068115234375;s:5:\"bytes\";i:12;s:11:\"size_before\";i:26971;s:10:\"size_after\";i:26959;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.040000000000000000832667268468867405317723751068115234375;s:5:\"bytes\";i:4;s:11:\"size_before\";i:9496;s:10:\"size_after\";i:9492;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.0299999999999999988897769753748434595763683319091796875;s:5:\"bytes\";i:6;s:11:\"size_before\";i:23016;s:10:\"size_after\";i:23010;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24270;s:10:\"size_after\";i:24270;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8760;s:10:\"size_after\";i:8760;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5882,592,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6864342839897386028269465896300971508026123046875;s:5:\"bytes\";i:207234;s:11:\"size_before\";i:2385720;s:10:\"size_after\";i:2178486;s:4:\"time\";d:0.62000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:4703;s:11:\"size_before\";i:50537;s:10:\"size_after\";i:45834;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:36124;s:11:\"size_before\";i:395900;s:10:\"size_after\";i:359776;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1739;s:11:\"size_before\";i:17974;s:10:\"size_after\";i:16235;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:29013;s:11:\"size_before\";i:328522;s:10:\"size_after\";i:299509;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1562;s:11:\"size_before\";i:15280;s:10:\"size_after\";i:13718;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:17236;s:11:\"size_before\";i:235171;s:10:\"size_after\";i:217935;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5374;s:11:\"size_before\";i:63966;s:10:\"size_after\";i:58592;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5786;s:11:\"size_before\";i:67598;s:10:\"size_after\";i:61812;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9314;s:11:\"size_before\";i:110143;s:10:\"size_after\";i:100829;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15245;s:11:\"size_before\";i:170964;s:10:\"size_after\";i:155719;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:25640;s:11:\"size_before\";i:292603;s:10:\"size_after\";i:266963;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:21191;s:11:\"size_before\";i:243834;s:10:\"size_after\";i:222643;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6757;s:11:\"size_before\";i:77686;s:10:\"size_after\";i:70929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1264;s:11:\"size_before\";i:13476;s:10:\"size_after\";i:12212;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:7925;s:11:\"size_before\";i:89135;s:10:\"size_after\";i:81210;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9982;s:11:\"size_before\";i:115336;s:10:\"size_after\";i:105354;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8379;s:11:\"size_before\";i:97595;s:10:\"size_after\";i:89216;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5867,543,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.2318299960344205601359135471284389495849609375;s:5:\"bytes\";i:309157;s:11:\"size_before\";i:3348816;s:10:\"size_after\";i:3039659;s:4:\"time\";d:0.74000000000000010214051826551440171897411346435546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1924;s:11:\"size_before\";i:18857;s:10:\"size_after\";i:16933;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6316;s:11:\"size_before\";i:60722;s:10:\"size_after\";i:54406;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:39658;s:11:\"size_before\";i:399030;s:10:\"size_after\";i:359372;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:61235;s:11:\"size_before\";i:631166;s:10:\"size_after\";i:569931;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1847;s:11:\"size_before\";i:17846;s:10:\"size_after\";i:15999;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:33916;s:11:\"size_before\";i:409167;s:10:\"size_after\";i:375251;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7145;s:11:\"size_before\";i:70179;s:10:\"size_after\";i:63034;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7565;s:11:\"size_before\";i:73701;s:10:\"size_after\";i:66136;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13002;s:11:\"size_before\";i:131200;s:10:\"size_after\";i:118198;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:20162;s:11:\"size_before\";i:221403;s:10:\"size_after\";i:201241;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:44461;s:11:\"size_before\";i:518479;s:10:\"size_after\";i:474018;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:37483;s:11:\"size_before\";i:465390;s:10:\"size_after\";i:427907;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:8770;s:11:\"size_before\";i:83700;s:10:\"size_after\";i:74930;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1547;s:11:\"size_before\";i:14469;s:10:\"size_after\";i:12922;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:9171;s:11:\"size_before\";i:87423;s:10:\"size_after\";i:78252;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:14955;s:11:\"size_before\";i:146084;s:10:\"size_after\";i:131129;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5868,547,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5869,547,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.2883155203771448071847771643660962581634521484375;s:5:\"bytes\";i:328635;s:11:\"size_before\";i:3538155;s:10:\"size_after\";i:3209520;s:4:\"time\";d:2.609999999999999875655021241982467472553253173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2345;s:11:\"size_before\";i:23605;s:10:\"size_after\";i:21260;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6429;s:11:\"size_before\";i:66615;s:10:\"size_after\";i:60186;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:32144;s:11:\"size_before\";i:351217;s:10:\"size_after\";i:319073;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:53350;s:11:\"size_before\";i:581330;s:10:\"size_after\";i:527980;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2178;s:11:\"size_before\";i:20703;s:10:\"size_after\";i:18525;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:41143;s:11:\"size_before\";i:445155;s:10:\"size_after\";i:404012;s:4:\"time\";d:0.95999999999999996447286321199499070644378662109375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:7778;s:11:\"size_before\";i:83536;s:10:\"size_after\";i:75758;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8612;s:11:\"size_before\";i:88633;s:10:\"size_after\";i:80021;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:13606;s:11:\"size_before\";i:148968;s:10:\"size_after\";i:135362;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:22327;s:11:\"size_before\";i:244081;s:10:\"size_after\";i:221754;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:51196;s:11:\"size_before\";i:558730;s:10:\"size_after\";i:507534;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:48777;s:11:\"size_before\";i:513935;s:10:\"size_after\";i:465158;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.25;s:5:\"bytes\";i:9297;s:11:\"size_before\";i:100507;s:10:\"size_after\";i:91210;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1929;s:11:\"size_before\";i:18354;s:10:\"size_after\";i:16425;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8384;s:11:\"size_before\";i:86785;s:10:\"size_after\";i:78401;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:19140;s:11:\"size_before\";i:206001;s:10:\"size_after\";i:186861;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(5881,591,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.84518569769697560190024887560866773128509521484375;s:5:\"bytes\";i:285510;s:11:\"size_before\";i:3639302;s:10:\"size_after\";i:3353792;s:4:\"time\";d:0.7600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:17:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6572;s:11:\"size_before\";i:74670;s:10:\"size_after\";i:68098;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:49994;s:11:\"size_before\";i:642366;s:10:\"size_after\";i:592372;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.75;s:5:\"bytes\";i:2153;s:11:\"size_before\";i:22092;s:10:\"size_after\";i:19939;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:29948;s:11:\"size_before\";i:392563;s:10:\"size_after\";i:362615;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19939;s:10:\"size_after\";i:19939;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:34735;s:11:\"size_before\";i:429691;s:10:\"size_after\";i:394956;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6796;s:11:\"size_before\";i:81683;s:10:\"size_after\";i:74887;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7384;s:11:\"size_before\";i:86314;s:10:\"size_after\";i:78930;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:11448;s:11:\"size_before\";i:147106;s:10:\"size_after\";i:135658;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:18355;s:11:\"size_before\";i:243140;s:10:\"size_after\";i:224785;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:42512;s:11:\"size_before\";i:527851;s:10:\"size_after\";i:485339;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:41183;s:11:\"size_before\";i:475295;s:10:\"size_after\";i:434112;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8310;s:11:\"size_before\";i:97233;s:10:\"size_after\";i:88923;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1600;s:11:\"size_before\";i:16609;s:10:\"size_after\";i:15009;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88923;s:10:\"size_after\";i:88923;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:13982;s:11:\"size_before\";i:170812;s:10:\"size_after\";i:156830;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10538;s:11:\"size_before\";i:123015;s:10:\"size_after\";i:112477;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5880,589,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9268740268764599221640310133807361125946044921875;s:5:\"bytes\";i:514005;s:11:\"size_before\";i:5177914;s:10:\"size_after\";i:4663909;s:4:\"time\";d:1.3900000000000003463895836830488406121730804443359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5027;s:11:\"size_before\";i:53428;s:10:\"size_after\";i:48401;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:44074;s:11:\"size_before\";i:459354;s:10:\"size_after\";i:415280;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1575;s:11:\"size_before\";i:17136;s:10:\"size_after\";i:15561;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:27291;s:11:\"size_before\";i:289089;s:10:\"size_after\";i:261798;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:96171;s:11:\"size_before\";i:925774;s:10:\"size_after\";i:829603;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:165324;s:11:\"size_before\";i:1510927;s:10:\"size_after\";i:1345603;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1577;s:11:\"size_before\";i:16942;s:10:\"size_after\";i:15365;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:29489;s:11:\"size_before\";i:330937;s:10:\"size_after\";i:301448;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5364;s:11:\"size_before\";i:60063;s:10:\"size_after\";i:54699;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5773;s:11:\"size_before\";i:63466;s:10:\"size_after\";i:57693;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:9566;s:11:\"size_before\";i:107746;s:10:\"size_after\";i:98180;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:15710;s:11:\"size_before\";i:180367;s:10:\"size_after\";i:164657;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:36249;s:11:\"size_before\";i:399039;s:10:\"size_after\";i:362790;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:36195;s:11:\"size_before\";i:396122;s:10:\"size_after\";i:359927;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:6658;s:11:\"size_before\";i:71011;s:10:\"size_after\";i:64353;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1188;s:11:\"size_before\";i:12955;s:10:\"size_after\";i:11767;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6781;s:11:\"size_before\";i:72356;s:10:\"size_after\";i:65575;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11520;s:11:\"size_before\";i:121655;s:10:\"size_after\";i:110135;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8473;s:11:\"size_before\";i:89547;s:10:\"size_after\";i:81074;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5879,580,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9584852;s:10:\"size_after\";i:9584852;s:4:\"time\";d:7.28999999999999914734871708787977695465087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:18:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:84237;s:10:\"size_after\";i:84237;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:860524;s:10:\"size_after\";i:860524;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26800;s:10:\"size_after\";i:26800;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:500992;s:10:\"size_after\";i:500992;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1780618;s:10:\"size_after\";i:1780618;s:4:\"time\";d:1.0800000000000000710542735760100185871124267578125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2914165;s:10:\"size_after\";i:2914165;s:4:\"time\";d:2.29000000000000003552713678800500929355621337890625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23783;s:10:\"size_after\";i:23783;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:632822;s:10:\"size_after\";i:632822;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101862;s:10:\"size_after\";i:101862;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:109211;s:10:\"size_after\";i:109211;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:190125;s:10:\"size_after\";i:190125;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:331088;s:10:\"size_after\";i:331088;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:775484;s:10:\"size_after\";i:775484;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:759408;s:10:\"size_after\";i:759408;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:127671;s:10:\"size_after\";i:127671;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19614;s:10:\"size_after\";i:19614;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:112822;s:10:\"size_after\";i:112822;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:233626;s:10:\"size_after\";i:233626;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}}}'),(5877,574,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.493733392850980834509755368344485759735107421875;s:5:\"bytes\";i:206504;s:11:\"size_before\";i:1796666;s:10:\"size_after\";i:1590162;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7820;s:11:\"size_before\";i:71702;s:10:\"size_after\";i:63882;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:2680;s:11:\"size_before\";i:23179;s:10:\"size_after\";i:20499;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2557;s:11:\"size_before\";i:22017;s:10:\"size_after\";i:19460;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:40608;s:11:\"size_before\";i:339307;s:10:\"size_after\";i:298699;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:9627;s:11:\"size_before\";i:87785;s:10:\"size_after\";i:78158;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:10090;s:11:\"size_before\";i:91393;s:10:\"size_after\";i:81303;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:17312;s:11:\"size_before\";i:159260;s:10:\"size_after\";i:141948;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:33318;s:11:\"size_before\";i:267914;s:10:\"size_after\";i:234596;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:40169;s:11:\"size_before\";i:343647;s:10:\"size_after\";i:303478;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10736;s:11:\"size_before\";i:98439;s:10:\"size_after\";i:87703;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2262;s:11:\"size_before\";i:18618;s:10:\"size_after\";i:16356;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:10183;s:11:\"size_before\";i:93059;s:10:\"size_after\";i:82876;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:19142;s:11:\"size_before\";i:180346;s:10:\"size_after\";i:161204;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5878,577,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.58889116502297245148156434879638254642486572265625;s:5:\"bytes\";i:64830;s:11:\"size_before\";i:854275;s:10:\"size_after\";i:789445;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4164;s:11:\"size_before\";i:57561;s:10:\"size_after\";i:53397;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1642;s:11:\"size_before\";i:20229;s:10:\"size_after\";i:18587;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1371;s:11:\"size_before\";i:16922;s:10:\"size_after\";i:15551;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5603;s:11:\"size_before\";i:73864;s:10:\"size_after\";i:68261;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:5947;s:11:\"size_before\";i:78137;s:10:\"size_after\";i:72190;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:9468;s:11:\"size_before\";i:117703;s:10:\"size_after\";i:108235;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:10814;s:11:\"size_before\";i:146372;s:10:\"size_after\";i:135558;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6773;s:11:\"size_before\";i:90010;s:10:\"size_after\";i:83237;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1279;s:11:\"size_before\";i:15229;s:10:\"size_after\";i:13950;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:7958;s:11:\"size_before\";i:106509;s:10:\"size_after\";i:98551;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:9811;s:11:\"size_before\";i:131739;s:10:\"size_after\";i:121928;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5875,566,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.3545077121430519895284305675886571407318115234375;s:5:\"bytes\";i:45492;s:11:\"size_before\";i:486311;s:10:\"size_after\";i:440819;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1762;s:11:\"size_before\";i:17160;s:10:\"size_after\";i:15398;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:4934;s:11:\"size_before\";i:50442;s:10:\"size_after\";i:45508;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1649;s:11:\"size_before\";i:16891;s:10:\"size_after\";i:15242;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:5690;s:11:\"size_before\";i:54848;s:10:\"size_after\";i:49158;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5778;s:11:\"size_before\";i:56934;s:10:\"size_after\";i:51156;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:4876;s:11:\"size_before\";i:65420;s:10:\"size_after\";i:60544;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6085;s:11:\"size_before\";i:78896;s:10:\"size_after\";i:72811;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6618;s:11:\"size_before\";i:65508;s:10:\"size_after\";i:58890;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1309;s:11:\"size_before\";i:13127;s:10:\"size_after\";i:11818;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6791;s:11:\"size_before\";i:67085;s:10:\"size_after\";i:60294;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5876,572,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.479814763715761927187486435286700725555419921875;s:5:\"bytes\";i:218381;s:11:\"size_before\";i:2083825;s:10:\"size_after\";i:1865444;s:4:\"time\";d:0.5700000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7170;s:11:\"size_before\";i:72437;s:10:\"size_after\";i:65267;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2567;s:11:\"size_before\";i:23602;s:10:\"size_after\";i:21035;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:37421;s:11:\"size_before\";i:336425;s:10:\"size_after\";i:299004;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2355;s:11:\"size_before\";i:22201;s:10:\"size_after\";i:19846;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:25933;s:11:\"size_before\";i:246182;s:10:\"size_after\";i:220249;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7437;s:11:\"size_before\";i:75107;s:10:\"size_after\";i:67670;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7942;s:11:\"size_before\";i:79965;s:10:\"size_after\";i:72023;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:12692;s:11:\"size_before\";i:121332;s:10:\"size_after\";i:108640;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:20557;s:11:\"size_before\";i:182555;s:10:\"size_after\";i:161998;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:31789;s:11:\"size_before\";i:307316;s:10:\"size_after\";i:275527;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:26261;s:11:\"size_before\";i:252419;s:10:\"size_after\";i:226158;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:9405;s:11:\"size_before\";i:95368;s:10:\"size_after\";i:85963;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1972;s:11:\"size_before\";i:17699;s:10:\"size_after\";i:15727;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9685;s:11:\"size_before\";i:100336;s:10:\"size_after\";i:90651;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:15195;s:11:\"size_before\";i:150881;s:10:\"size_after\";i:135686;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5870,456,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.694845287765641916877257244777865707874298095703125;s:5:\"bytes\";i:8342;s:11:\"size_before\";i:225774;s:10:\"size_after\";i:217432;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15909;s:10:\"size_after\";i:15909;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27565;s:10:\"size_after\";i:27565;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10431;s:10:\"size_after\";i:10431;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45546;s:10:\"size_after\";i:45546;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36657;s:10:\"size_after\";i:36657;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34810;s:10:\"size_after\";i:34810;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2158;s:11:\"size_before\";i:14861;s:10:\"size_after\";i:12703;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:6184;s:11:\"size_before\";i:39995;s:10:\"size_after\";i:33811;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5871,556,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5872,556,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.2557013418119513659121366799809038639068603515625;s:5:\"bytes\";i:284884;s:11:\"size_before\";i:2777811;s:10:\"size_after\";i:2492927;s:4:\"time\";d:1.37000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1936;s:11:\"size_before\";i:19165;s:10:\"size_after\";i:17229;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:5684;s:11:\"size_before\";i:59087;s:10:\"size_after\";i:53403;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:31044;s:11:\"size_before\";i:302306;s:10:\"size_after\";i:271262;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:51575;s:11:\"size_before\";i:496622;s:10:\"size_after\";i:445047;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17229;s:10:\"size_after\";i:17229;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:35707;s:11:\"size_before\";i:337890;s:10:\"size_after\";i:302183;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:6272;s:11:\"size_before\";i:65129;s:10:\"size_after\";i:58857;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:6681;s:11:\"size_before\";i:68760;s:10:\"size_after\";i:62079;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11412;s:11:\"size_before\";i:114349;s:10:\"size_after\";i:102937;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:18882;s:11:\"size_before\";i:186913;s:10:\"size_after\";i:168031;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:43553;s:11:\"size_before\";i:412784;s:10:\"size_after\";i:369231;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:41796;s:11:\"size_before\";i:393699;s:10:\"size_after\";i:351903;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7443;s:11:\"size_before\";i:76866;s:10:\"size_after\";i:69423;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1493;s:11:\"size_before\";i:14859;s:10:\"size_after\";i:13366;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:7561;s:11:\"size_before\";i:76773;s:10:\"size_after\";i:69212;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:13845;s:11:\"size_before\";i:135380;s:10:\"size_after\";i:121535;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(9170,1462,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5873,561,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5874,561,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.908499525261913021267901058308780193328857421875;s:5:\"bytes\";i:245762;s:11:\"size_before\";i:2480315;s:10:\"size_after\";i:2234553;s:4:\"time\";d:1.100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1322;s:11:\"size_before\";i:15536;s:10:\"size_after\";i:14214;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4358;s:11:\"size_before\";i:47179;s:10:\"size_after\";i:42821;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26985;s:11:\"size_before\";i:255786;s:10:\"size_after\";i:228801;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:44326;s:11:\"size_before\";i:434250;s:10:\"size_after\";i:389924;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1283;s:11:\"size_before\";i:14340;s:10:\"size_after\";i:13057;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:31087;s:11:\"size_before\";i:313445;s:10:\"size_after\";i:282358;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5027;s:11:\"size_before\";i:55227;s:10:\"size_after\";i:50200;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5436;s:11:\"size_before\";i:58396;s:10:\"size_after\";i:52960;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:9400;s:11:\"size_before\";i:97543;s:10:\"size_after\";i:88143;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:16363;s:11:\"size_before\";i:163106;s:10:\"size_after\";i:146743;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:37812;s:11:\"size_before\";i:390391;s:10:\"size_after\";i:352579;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10;s:5:\"bytes\";i:38168;s:11:\"size_before\";i:381842;s:10:\"size_after\";i:343674;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:6073;s:11:\"size_before\";i:64345;s:10:\"size_after\";i:58272;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1169;s:11:\"size_before\";i:12147;s:10:\"size_after\";i:10978;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5688;s:11:\"size_before\";i:61181;s:10:\"size_after\";i:55493;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:11265;s:11:\"size_before\";i:115601;s:10:\"size_after\";i:104336;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5847,467,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.257774251918963415164398611523211002349853515625;s:5:\"bytes\";i:176843;s:11:\"size_before\";i:2436601;s:10:\"size_after\";i:2259758;s:4:\"time\";d:3.100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3671;s:11:\"size_before\";i:37006;s:10:\"size_after\";i:33335;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8961;s:11:\"size_before\";i:89168;s:10:\"size_after\";i:80207;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:31112;s:11:\"size_before\";i:476156;s:10:\"size_after\";i:445044;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1663;s:11:\"size_before\";i:25109;s:10:\"size_after\";i:23446;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:13545;s:11:\"size_before\";i:147192;s:10:\"size_after\";i:133647;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:16168;s:11:\"size_before\";i:160617;s:10:\"size_after\";i:144449;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:19728;s:11:\"size_before\";i:276240;s:10:\"size_after\";i:256512;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:26388;s:11:\"size_before\";i:433460;s:10:\"size_after\";i:407072;s:4:\"time\";d:0.689999999999999946709294817992486059665679931640625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:15237;s:11:\"size_before\";i:171387;s:10:\"size_after\";i:156150;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2228;s:11:\"size_before\";i:28928;s:10:\"size_after\";i:26700;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:12484;s:11:\"size_before\";i:120665;s:10:\"size_after\";i:108181;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:25658;s:11:\"size_before\";i:470673;s:10:\"size_after\";i:445015;s:4:\"time\";d:0.75;}}}'),(5848,471,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4635132409062894254248021752573549747467041015625;s:5:\"bytes\";i:30627;s:11:\"size_before\";i:361871;s:10:\"size_after\";i:331244;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1392;s:11:\"size_before\";i:15621;s:10:\"size_after\";i:14229;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:3807;s:11:\"size_before\";i:41776;s:10:\"size_after\";i:37969;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1218;s:11:\"size_before\";i:13471;s:10:\"size_after\";i:12253;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3173;s:11:\"size_before\";i:44093;s:10:\"size_after\";i:40920;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3619;s:11:\"size_before\";i:47808;s:10:\"size_after\";i:44189;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4234;s:11:\"size_before\";i:58302;s:10:\"size_after\";i:54068;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:5627;s:11:\"size_before\";i:60067;s:10:\"size_after\";i:54440;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1037;s:11:\"size_before\";i:11657;s:10:\"size_after\";i:10620;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:6520;s:11:\"size_before\";i:69076;s:10:\"size_after\";i:62556;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5849,474,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.372357946025015706936756032519042491912841796875;s:5:\"bytes\";i:63647;s:11:\"size_before\";i:760204;s:10:\"size_after\";i:696557;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2100;s:11:\"size_before\";i:21145;s:10:\"size_after\";i:19045;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:5910;s:11:\"size_before\";i:64102;s:10:\"size_after\";i:58192;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19045;s:10:\"size_after\";i:19045;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6420;s:11:\"size_before\";i:67910;s:10:\"size_after\";i:61490;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:6796;s:11:\"size_before\";i:72340;s:10:\"size_after\";i:65544;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:9762;s:11:\"size_before\";i:95139;s:10:\"size_after\";i:85377;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:10999;s:11:\"size_before\";i:117351;s:10:\"size_after\";i:106352;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7503;s:11:\"size_before\";i:81255;s:10:\"size_after\";i:73752;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1813;s:11:\"size_before\";i:16569;s:10:\"size_after\";i:14756;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:73752;s:10:\"size_after\";i:73752;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:12344;s:11:\"size_before\";i:131596;s:10:\"size_after\";i:119252;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5817,316,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.6139261858174194230741704814136028289794921875;s:5:\"bytes\";i:18742;s:11:\"size_before\";i:59284;s:10:\"size_after\";i:40542;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.489999999999998436805981327779591083526611328125;s:5:\"bytes\";i:5734;s:11:\"size_before\";i:18806;s:10:\"size_after\";i:13072;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.25999999999999801048033987171947956085205078125;s:5:\"bytes\";i:7580;s:11:\"size_before\";i:23494;s:10:\"size_after\";i:15914;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5428;s:11:\"size_before\";i:16984;s:10:\"size_after\";i:11556;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5865,541,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.579036317434070468834761413745582103729248046875;s:5:\"bytes\";i:7056;s:11:\"size_before\";i:82247;s:10:\"size_after\";i:75191;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:1503;s:11:\"size_before\";i:16696;s:10:\"size_after\";i:15193;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1449;s:11:\"size_before\";i:15378;s:10:\"size_after\";i:13929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:2881;s:11:\"size_before\";i:36902;s:10:\"size_after\";i:34021;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1223;s:11:\"size_before\";i:13271;s:10:\"size_after\";i:12048;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5857,504,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.077670841517690547561869607307016849517822265625;s:5:\"bytes\";i:446153;s:11:\"size_before\";i:4427144;s:10:\"size_after\";i:3980991;s:4:\"time\";d:1.11000000000000031974423109204508364200592041015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3283;s:11:\"size_before\";i:27246;s:10:\"size_after\";i:23963;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5;s:5:\"bytes\";i:11082;s:11:\"size_before\";i:96363;s:10:\"size_after\";i:85281;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:57449;s:11:\"size_before\";i:544355;s:10:\"size_after\";i:486906;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:89257;s:11:\"size_before\";i:868055;s:10:\"size_after\";i:778798;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23963;s:10:\"size_after\";i:23963;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:47904;s:11:\"size_before\";i:502268;s:10:\"size_after\";i:454364;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9780;s:11:\"size_before\";i:96890;s:10:\"size_after\";i:87110;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:10977;s:11:\"size_before\";i:104684;s:10:\"size_after\";i:93707;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:17064;s:11:\"size_before\";i:174879;s:10:\"size_after\";i:157815;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:26707;s:11:\"size_before\";i:285100;s:10:\"size_after\";i:258393;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:59541;s:11:\"size_before\";i:624769;s:10:\"size_after\";i:565228;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:56074;s:11:\"size_before\";i:570938;s:10:\"size_after\";i:514864;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14696;s:11:\"size_before\";i:128635;s:10:\"size_after\";i:113939;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2047;s:11:\"size_before\";i:18885;s:10:\"size_after\";i:16838;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:14681;s:11:\"size_before\";i:129893;s:10:\"size_after\";i:115212;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:25611;s:11:\"size_before\";i:230221;s:10:\"size_after\";i:204610;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5855,500,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78198;s:10:\"size_after\";i:78198;s:4:\"time\";d:0.229999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28177;s:10:\"size_after\";i:28177;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28177;s:10:\"size_after\";i:28177;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21844;s:10:\"size_after\";i:21844;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5818,317,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.70200899208924028016554075293242931365966796875;s:5:\"bytes\";i:31366;s:11:\"size_before\";i:87855;s:10:\"size_after\";i:56489;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:47.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2238;s:11:\"size_before\";i:4697;s:10:\"size_after\";i:2459;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.74000000000000198951966012828052043914794921875;s:5:\"bytes\";i:5661;s:11:\"size_before\";i:17290;s:10:\"size_after\";i:11629;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:1525;s:11:\"size_before\";i:5423;s:10:\"size_after\";i:3898;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.52000000000000312638803734444081783294677734375;s:5:\"bytes\";i:3058;s:11:\"size_before\";i:7192;s:10:\"size_after\";i:4134;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3028;s:11:\"size_before\";i:7099;s:10:\"size_after\";i:4071;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:3418;s:11:\"size_before\";i:8452;s:10:\"size_after\";i:5034;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2960;s:11:\"size_before\";i:6787;s:10:\"size_after\";i:3827;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:5116;s:11:\"size_before\";i:15908;s:10:\"size_after\";i:10792;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4362;s:11:\"size_before\";i:15007;s:10:\"size_after\";i:10645;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5856,501,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.2161070084993728102062959806062281131744384765625;s:5:\"bytes\";i:3507;s:11:\"size_before\";i:28708;s:10:\"size_after\";i:25201;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2420;s:11:\"size_before\";i:10491;s:10:\"size_after\";i:8071;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8071;s:10:\"size_after\";i:8071;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1087;s:11:\"size_before\";i:10146;s:10:\"size_after\";i:9059;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5854,499,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.8503336701884851578370216884650290012359619140625;s:5:\"bytes\";i:106057;s:11:\"size_before\";i:1198339;s:10:\"size_after\";i:1092282;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1439;s:11:\"size_before\";i:16434;s:10:\"size_after\";i:14995;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4113;s:11:\"size_before\";i:51450;s:10:\"size_after\";i:47337;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1410;s:11:\"size_before\";i:15975;s:10:\"size_after\";i:14565;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:15454;s:11:\"size_before\";i:233559;s:10:\"size_after\";i:218105;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4241;s:11:\"size_before\";i:57965;s:10:\"size_after\";i:53724;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:4530;s:11:\"size_before\";i:60905;s:10:\"size_after\";i:56375;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7196;s:11:\"size_before\";i:104365;s:10:\"size_after\";i:97169;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:10332;s:11:\"size_before\";i:166672;s:10:\"size_after\";i:156340;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.25;s:5:\"bytes\";i:37043;s:11:\"size_before\";i:214744;s:10:\"size_after\";i:177701;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:5240;s:11:\"size_before\";i:72010;s:10:\"size_after\";i:66770;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1048;s:11:\"size_before\";i:12350;s:10:\"size_after\";i:11302;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5323;s:11:\"size_before\";i:73802;s:10:\"size_after\";i:68479;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:8688;s:11:\"size_before\";i:118108;s:10:\"size_after\";i:109420;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(5851,482,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.9566857229826783992621130892075598239898681640625;s:5:\"bytes\";i:133834;s:11:\"size_before\";i:1682032;s:10:\"size_after\";i:1548198;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1657;s:11:\"size_before\";i:18612;s:10:\"size_after\";i:16955;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4327;s:11:\"size_before\";i:56130;s:10:\"size_after\";i:51803;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1562;s:11:\"size_before\";i:17258;s:10:\"size_after\";i:15696;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:20754;s:11:\"size_before\";i:259234;s:10:\"size_after\";i:238480;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:5168;s:11:\"size_before\";i:64720;s:10:\"size_after\";i:59552;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:5616;s:11:\"size_before\";i:68959;s:10:\"size_after\";i:63343;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8682;s:11:\"size_before\";i:115164;s:10:\"size_after\";i:106482;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:14112;s:11:\"size_before\";i:179677;s:10:\"size_after\";i:165565;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:26403;s:11:\"size_before\";i:320617;s:10:\"size_after\";i:294214;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:21182;s:11:\"size_before\";i:267258;s:10:\"size_after\";i:246076;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6533;s:11:\"size_before\";i:83349;s:10:\"size_after\";i:76816;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1274;s:11:\"size_before\";i:14047;s:10:\"size_after\";i:12773;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:6518;s:11:\"size_before\";i:85272;s:10:\"size_after\";i:78754;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:10046;s:11:\"size_before\";i:131735;s:10:\"size_after\";i:121689;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5852,485,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.303404184240623209234399837441742420196533203125;s:5:\"bytes\";i:162554;s:11:\"size_before\";i:1957679;s:10:\"size_after\";i:1795125;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2347;s:11:\"size_before\";i:23029;s:10:\"size_after\";i:20682;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6443;s:11:\"size_before\";i:69550;s:10:\"size_after\";i:63107;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2356;s:11:\"size_before\";i:22181;s:10:\"size_after\";i:19825;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:22996;s:11:\"size_before\";i:291269;s:10:\"size_after\";i:268273;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6900;s:11:\"size_before\";i:81001;s:10:\"size_after\";i:74101;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7424;s:11:\"size_before\";i:84787;s:10:\"size_after\";i:77363;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:11921;s:11:\"size_before\";i:143882;s:10:\"size_after\";i:131961;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:18238;s:11:\"size_before\";i:219414;s:10:\"size_after\";i:201176;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:27458;s:11:\"size_before\";i:348667;s:10:\"size_after\";i:321209;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:23460;s:11:\"size_before\";i:298447;s:10:\"size_after\";i:274987;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:8634;s:11:\"size_before\";i:98478;s:10:\"size_after\";i:89844;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1868;s:11:\"size_before\";i:17627;s:10:\"size_after\";i:15759;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9088;s:11:\"size_before\";i:104311;s:10:\"size_after\";i:95223;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13421;s:11:\"size_before\";i:155036;s:10:\"size_after\";i:141615;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5176,996,'_elementor_controls_usage','a:7:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:24:\"wp-widget-weforms_widget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),(5813,194,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.4779164417997918690161895938217639923095703125;s:5:\"bytes\";i:223117;s:11:\"size_before\";i:1788095;s:10:\"size_after\";i:1564978;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:3380;s:11:\"size_before\";i:24190;s:10:\"size_after\";i:20810;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7537;s:11:\"size_before\";i:60128;s:10:\"size_after\";i:52591;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2481;s:11:\"size_before\";i:18385;s:10:\"size_after\";i:15904;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:32802;s:11:\"size_before\";i:256922;s:10:\"size_after\";i:224120;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:11142;s:11:\"size_before\";i:83619;s:10:\"size_after\";i:72477;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:11495;s:11:\"size_before\";i:88216;s:10:\"size_after\";i:76721;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:17145;s:11:\"size_before\";i:140916;s:10:\"size_after\";i:123771;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:23662;s:11:\"size_before\";i:182774;s:10:\"size_after\";i:159112;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:36375;s:11:\"size_before\";i:301134;s:10:\"size_after\";i:264759;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:31437;s:11:\"size_before\";i:253938;s:10:\"size_after\";i:222501;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12589;s:11:\"size_before\";i:100643;s:10:\"size_after\";i:88054;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2640;s:11:\"size_before\";i:18551;s:10:\"size_after\";i:15911;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14972;s:11:\"size_before\";i:127998;s:10:\"size_after\";i:113026;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:15460;s:11:\"size_before\";i:130681;s:10:\"size_after\";i:115221;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5192,916,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:8:\"progress\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_progress\";a:3:{s:5:\"title\";i:1;s:7:\"percent\";i:1;s:10:\"inner_text\";i:1;}}s:5:\"style\";a:2:{s:22:\"section_progress_style\";a:5:{s:9:\"bar_color\";i:1;s:10:\"bar_height\";i:1;s:17:\"bar_border_radius\";i:1;s:31:\"bar_inner_typography_typography\";i:1;s:30:\"bar_inner_typography_font_size\";i:1;}s:13:\"section_title\";a:7:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:24:\"wp-widget-weforms_widget\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:2;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:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(5850,479,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9351521948117298421720988699235022068023681640625;s:5:\"bytes\";i:134041;s:11:\"size_before\";i:1349159;s:10:\"size_after\";i:1215118;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2136;s:11:\"size_before\";i:17293;s:10:\"size_after\";i:15157;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:5729;s:11:\"size_before\";i:50747;s:10:\"size_after\";i:45018;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2031;s:11:\"size_before\";i:16425;s:10:\"size_after\";i:14394;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:18666;s:11:\"size_before\";i:194798;s:10:\"size_after\";i:176132;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6280;s:11:\"size_before\";i:58919;s:10:\"size_after\";i:52639;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:6639;s:11:\"size_before\";i:61873;s:10:\"size_after\";i:55234;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:10063;s:11:\"size_before\";i:99111;s:10:\"size_after\";i:89048;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:13426;s:11:\"size_before\";i:145954;s:10:\"size_after\";i:132528;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:21297;s:11:\"size_before\";i:232732;s:10:\"size_after\";i:211435;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:18191;s:11:\"size_before\";i:200871;s:10:\"size_after\";i:182680;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:7958;s:11:\"size_before\";i:72057;s:10:\"size_after\";i:64099;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1735;s:11:\"size_before\";i:13600;s:10:\"size_after\";i:11865;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:8201;s:11:\"size_before\";i:74345;s:10:\"size_after\";i:66144;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:11689;s:11:\"size_before\";i:110434;s:10:\"size_after\";i:98745;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5194,755,'_edit_lock','1651343412:1'),(5844,449,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1552264877525910691247190698049962520599365234375;s:5:\"bytes\";i:7674;s:11:\"size_before\";i:75567;s:10:\"size_after\";i:67893;s:4:\"time\";d:0.06999999999999999278355033993648248724639415740966796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1789;s:11:\"size_before\";i:16401;s:10:\"size_after\";i:14612;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1503;s:11:\"size_before\";i:13751;s:10:\"size_after\";i:12248;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3017;s:11:\"size_before\";i:32772;s:10:\"size_after\";i:29755;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1365;s:11:\"size_before\";i:12643;s:10:\"size_after\";i:11278;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}');
INSERT INTO `lrwp_postmeta` VALUES (5845,451,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.970909079579417078065262103336863219738006591796875;s:5:\"bytes\";i:50980;s:11:\"size_before\";i:1283837;s:10:\"size_after\";i:1232857;s:4:\"time\";d:2.42999999999999971578290569595992565155029296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:4155;s:11:\"size_before\";i:24132;s:10:\"size_after\";i:19977;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2206;s:11:\"size_before\";i:49604;s:10:\"size_after\";i:47398;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:235440;s:10:\"size_after\";i:235440;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1137;s:11:\"size_before\";i:15328;s:10:\"size_after\";i:14191;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6298;s:11:\"size_before\";i:115420;s:10:\"size_after\";i:109122;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:9579;s:11:\"size_before\";i:118181;s:10:\"size_after\";i:108602;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:189543;s:10:\"size_after\";i:189543;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:2362;s:11:\"size_before\";i:342160;s:10:\"size_after\";i:339798;s:4:\"time\";d:0.60999999999999998667732370449812151491641998291015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:23186;s:11:\"size_before\";i:111649;s:10:\"size_after\";i:88463;s:4:\"time\";d:0.25;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1902;s:11:\"size_before\";i:22715;s:10:\"size_after\";i:20813;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.2600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:155;s:11:\"size_before\";i:59665;s:10:\"size_after\";i:59510;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(5846,453,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.55774434217527613100173766724765300750732421875;s:5:\"bytes\";i:13742;s:11:\"size_before\";i:88329;s:10:\"size_after\";i:74587;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3154;s:11:\"size_before\";i:19877;s:10:\"size_after\";i:16723;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5874;s:11:\"size_before\";i:37145;s:10:\"size_after\";i:31271;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2060;s:11:\"size_before\";i:13146;s:10:\"size_after\";i:11086;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2654;s:11:\"size_before\";i:18161;s:10:\"size_after\";i:15507;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5814,195,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.88151816371583890941110439598560333251953125;s:5:\"bytes\";i:148276;s:11:\"size_before\";i:1247955;s:10:\"size_after\";i:1099679;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4290;s:11:\"size_before\";i:29014;s:10:\"size_after\";i:24724;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:9275;s:11:\"size_before\";i:68396;s:10:\"size_after\";i:59121;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3294;s:11:\"size_before\";i:21269;s:10:\"size_after\";i:17975;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12920;s:11:\"size_before\";i:101739;s:10:\"size_after\";i:88819;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:13238;s:11:\"size_before\";i:105790;s:10:\"size_after\";i:92552;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:19727;s:11:\"size_before\";i:175572;s:10:\"size_after\";i:155845;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:29570;s:11:\"size_before\";i:262882;s:10:\"size_after\";i:233312;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:13411;s:11:\"size_before\";i:113905;s:10:\"size_after\";i:100494;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:3506;s:11:\"size_before\";i:22425;s:10:\"size_after\";i:18919;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:11522;s:11:\"size_before\";i:88505;s:10:\"size_after\";i:76983;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:27523;s:11:\"size_before\";i:258458;s:10:\"size_after\";i:230935;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5815,196,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.7153614648272021980801582685671746730804443359375;s:5:\"bytes\";i:74117;s:11:\"size_before\";i:632648;s:10:\"size_after\";i:558531;s:4:\"time\";d:0.210000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3400;s:11:\"size_before\";i:25006;s:10:\"size_after\";i:21606;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7392;s:11:\"size_before\";i:59882;s:10:\"size_after\";i:52490;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2656;s:11:\"size_before\";i:18793;s:10:\"size_after\";i:16137;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:10371;s:11:\"size_before\";i:88870;s:10:\"size_after\";i:78499;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11148;s:11:\"size_before\";i:93720;s:10:\"size_after\";i:82572;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:16613;s:11:\"size_before\";i:153866;s:10:\"size_after\";i:137253;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:10615;s:11:\"size_before\";i:95562;s:10:\"size_after\";i:84947;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2834;s:11:\"size_before\";i:19941;s:10:\"size_after\";i:17107;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:9088;s:11:\"size_before\";i:77008;s:10:\"size_after\";i:67920;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5816,276,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.3379819491804862963135747122578322887420654296875;s:5:\"bytes\";i:72616;s:11:\"size_before\";i:506459;s:10:\"size_after\";i:433843;s:4:\"time\";d:2.21999999999999975131004248396493494510650634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13161;s:10:\"size_after\";i:13161;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:732;s:11:\"size_before\";i:15380;s:10:\"size_after\";i:14648;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:2966;s:11:\"size_before\";i:66344;s:10:\"size_after\";i:63378;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:5243;s:11:\"size_before\";i:107962;s:10:\"size_after\";i:102719;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:248;s:11:\"size_before\";i:5638;s:10:\"size_after\";i:5390;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:25199;s:11:\"size_before\";i:62556;s:10:\"size_after\";i:37357;s:4:\"time\";d:0.68000000000000004884981308350688777863979339599609375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:463;s:11:\"size_before\";i:39328;s:10:\"size_after\";i:38865;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1411;s:11:\"size_before\";i:40225;s:10:\"size_after\";i:38814;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:12533;s:11:\"size_before\";i:31785;s:10:\"size_after\";i:19252;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:14018;s:11:\"size_before\";i:35013;s:10:\"size_after\";i:20995;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37357;s:10:\"size_after\";i:37357;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.77000000000000312638803734444081783294677734375;s:5:\"bytes\";i:9211;s:11:\"size_before\";i:23161;s:10:\"size_after\";i:13950;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9059;s:10:\"size_after\";i:9059;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:592;s:11:\"size_before\";i:19490;s:10:\"size_after\";i:18898;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5840,437,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6204344693541070654418945196084678173065185546875;s:5:\"bytes\";i:317425;s:11:\"size_before\";i:3682239;s:10:\"size_after\";i:3364814;s:4:\"time\";d:1.1500000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2200;s:11:\"size_before\";i:21033;s:10:\"size_after\";i:18833;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6366;s:11:\"size_before\";i:66178;s:10:\"size_after\";i:59812;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:31884;s:11:\"size_before\";i:388373;s:10:\"size_after\";i:356489;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:53916;s:11:\"size_before\";i:655260;s:10:\"size_after\";i:601344;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2072;s:11:\"size_before\";i:19850;s:10:\"size_after\";i:17778;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:39484;s:11:\"size_before\";i:464650;s:10:\"size_after\";i:425166;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:7651;s:11:\"size_before\";i:80781;s:10:\"size_after\";i:73130;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.75;s:5:\"bytes\";i:8240;s:11:\"size_before\";i:84538;s:10:\"size_after\";i:76298;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:13603;s:11:\"size_before\";i:149916;s:10:\"size_after\";i:136313;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:21379;s:11:\"size_before\";i:251421;s:10:\"size_after\";i:230042;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:49340;s:11:\"size_before\";i:581199;s:10:\"size_after\";i:531859;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:46574;s:11:\"size_before\";i:537303;s:10:\"size_after\";i:490729;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8682;s:11:\"size_before\";i:94303;s:10:\"size_after\";i:85621;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1802;s:11:\"size_before\";i:16485;s:10:\"size_after\";i:14683;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8338;s:11:\"size_before\";i:88184;s:10:\"size_after\";i:79846;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15894;s:11:\"size_before\";i:182765;s:10:\"size_after\";i:166871;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5841,440,'wp-smush-resize_savings','a:3:{s:5:\"bytes\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;}'),(5842,440,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.9187645248476652426461441791616380214691162109375;s:5:\"bytes\";i:328600;s:11:\"size_before\";i:3009498;s:10:\"size_after\";i:2680898;s:4:\"time\";d:1.680000000000000159872115546022541821002960205078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1901;s:11:\"size_before\";i:17186;s:10:\"size_after\";i:15285;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5529;s:11:\"size_before\";i:50438;s:10:\"size_after\";i:44909;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:41524;s:11:\"size_before\";i:374981;s:10:\"size_after\";i:333457;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:55133;s:11:\"size_before\";i:497837;s:10:\"size_after\";i:442704;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1642;s:11:\"size_before\";i:15408;s:10:\"size_after\";i:13766;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:41357;s:11:\"size_before\";i:381670;s:10:\"size_after\";i:340313;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6787;s:11:\"size_before\";i:63086;s:10:\"size_after\";i:56299;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7204;s:11:\"size_before\";i:66682;s:10:\"size_after\";i:59478;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:12468;s:11:\"size_before\";i:116259;s:10:\"size_after\";i:103791;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:21527;s:11:\"size_before\";i:200002;s:10:\"size_after\";i:178475;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:50445;s:11:\"size_before\";i:464241;s:10:\"size_after\";i:413796;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:50563;s:11:\"size_before\";i:467202;s:10:\"size_after\";i:416639;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11;s:5:\"bytes\";i:8302;s:11:\"size_before\";i:75458;s:10:\"size_after\";i:67156;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1476;s:11:\"size_before\";i:13265;s:10:\"size_after\";i:11789;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9508;s:11:\"size_before\";i:85692;s:10:\"size_after\";i:76184;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:13234;s:11:\"size_before\";i:120091;s:10:\"size_after\";i:106857;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5843,445,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.2288747160676276592994327074848115444183349609375;s:5:\"bytes\";i:224283;s:11:\"size_before\";i:2725561;s:10:\"size_after\";i:2501278;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1427;s:11:\"size_before\";i:15839;s:10:\"size_after\";i:14412;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4676;s:11:\"size_before\";i:53361;s:10:\"size_after\";i:48685;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:22842;s:11:\"size_before\";i:312721;s:10:\"size_after\";i:289879;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:39859;s:11:\"size_before\";i:524378;s:10:\"size_after\";i:484519;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14412;s:10:\"size_after\";i:14412;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:29078;s:11:\"size_before\";i:334976;s:10:\"size_after\";i:305898;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:4898;s:11:\"size_before\";i:57827;s:10:\"size_after\";i:52929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5449;s:11:\"size_before\";i:62134;s:10:\"size_after\";i:56685;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:8639;s:11:\"size_before\";i:105463;s:10:\"size_after\";i:96824;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:14880;s:11:\"size_before\";i:179795;s:10:\"size_after\";i:164915;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:34661;s:11:\"size_before\";i:416031;s:10:\"size_after\";i:381370;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:34606;s:11:\"size_before\";i:369427;s:10:\"size_after\";i:334821;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6055;s:11:\"size_before\";i:70432;s:10:\"size_after\";i:64377;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1046;s:11:\"size_before\";i:11991;s:10:\"size_after\";i:10945;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:5992;s:11:\"size_before\";i:70405;s:10:\"size_after\";i:64413;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10175;s:11:\"size_before\";i:126369;s:10:\"size_after\";i:116194;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5832,394,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.4234311294336752240496934973634779453277587890625;s:5:\"bytes\";i:277717;s:11:\"size_before\";i:2664353;s:10:\"size_after\";i:2386636;s:4:\"time\";d:0.7300000000000002042810365310288034379482269287109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1783;s:11:\"size_before\";i:18887;s:10:\"size_after\";i:17104;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5118;s:11:\"size_before\";i:59879;s:10:\"size_after\";i:54761;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:28595;s:11:\"size_before\";i:358295;s:10:\"size_after\";i:329700;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:40820;s:11:\"size_before\";i:486969;s:10:\"size_after\";i:446149;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1698;s:11:\"size_before\";i:17736;s:10:\"size_after\";i:16038;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:24592;s:11:\"size_before\";i:321233;s:10:\"size_after\";i:296641;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5468;s:11:\"size_before\";i:69126;s:10:\"size_after\";i:63658;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:5822;s:11:\"size_before\";i:73054;s:10:\"size_after\";i:67232;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:9322;s:11:\"size_before\";i:121331;s:10:\"size_after\";i:112009;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:15858;s:11:\"size_before\";i:191589;s:10:\"size_after\";i:175731;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:61657;s:11:\"size_before\";i:338136;s:10:\"size_after\";i:276479;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:50740;s:11:\"size_before\";i:279058;s:10:\"size_after\";i:228318;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6772;s:11:\"size_before\";i:84522;s:10:\"size_after\";i:77750;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1379;s:11:\"size_before\";i:14108;s:10:\"size_after\";i:12729;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7370;s:11:\"size_before\";i:92254;s:10:\"size_after\";i:84884;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:10723;s:11:\"size_before\";i:138176;s:10:\"size_after\";i:127453;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5833,401,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.3081122850337205676396479248069226741790771484375;s:5:\"bytes\";i:126962;s:11:\"size_before\";i:1363993;s:10:\"size_after\";i:1237031;s:4:\"time\";d:0.43000000000000004884981308350688777863979339599609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1817;s:11:\"size_before\";i:18660;s:10:\"size_after\";i:16843;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:4700;s:11:\"size_before\";i:50131;s:10:\"size_after\";i:45431;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:23529;s:11:\"size_before\";i:238886;s:10:\"size_after\";i:215357;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1677;s:11:\"size_before\";i:16616;s:10:\"size_after\";i:14939;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:16394;s:11:\"size_before\";i:195333;s:10:\"size_after\";i:178939;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:5270;s:11:\"size_before\";i:57358;s:10:\"size_after\";i:52088;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5717;s:11:\"size_before\";i:61468;s:10:\"size_after\";i:55751;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9198;s:11:\"size_before\";i:95181;s:10:\"size_after\";i:85983;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:13883;s:11:\"size_before\";i:137074;s:10:\"size_after\";i:123191;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:17672;s:11:\"size_before\";i:202772;s:10:\"size_after\";i:185100;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6678;s:11:\"size_before\";i:74117;s:10:\"size_after\";i:67439;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1317;s:11:\"size_before\";i:13250;s:10:\"size_after\";i:11933;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6214;s:11:\"size_before\";i:66124;s:10:\"size_after\";i:59910;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:12896;s:11:\"size_before\";i:137023;s:10:\"size_after\";i:124127;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5834,414,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.725872226573489598422384005971252918243408203125;s:5:\"bytes\";i:317985;s:11:\"size_before\";i:2964654;s:10:\"size_after\";i:2646669;s:4:\"time\";d:0.910000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2908;s:11:\"size_before\";i:24305;s:10:\"size_after\";i:21397;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:8207;s:11:\"size_before\";i:76145;s:10:\"size_after\";i:67938;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:37120;s:11:\"size_before\";i:355333;s:10:\"size_after\";i:318213;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:58086;s:11:\"size_before\";i:553186;s:10:\"size_after\";i:495100;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21397;s:10:\"size_after\";i:21397;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:35936;s:11:\"size_before\";i:322771;s:10:\"size_after\";i:286835;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:7763;s:11:\"size_before\";i:73094;s:10:\"size_after\";i:65331;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:8195;s:11:\"size_before\";i:78854;s:10:\"size_after\";i:70659;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12578;s:11:\"size_before\";i:120403;s:10:\"size_after\";i:107825;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:19544;s:11:\"size_before\";i:183823;s:10:\"size_after\";i:164279;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:45321;s:11:\"size_before\";i:417313;s:10:\"size_after\";i:371992;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:42906;s:11:\"size_before\";i:363352;s:10:\"size_after\";i:320446;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:10205;s:11:\"size_before\";i:96941;s:10:\"size_after\";i:86736;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2004;s:11:\"size_before\";i:17240;s:10:\"size_after\";i:15236;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:10363;s:11:\"size_before\";i:98161;s:10:\"size_after\";i:87798;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16849;s:11:\"size_before\";i:162336;s:10:\"size_after\";i:145487;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5839,431,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.3364650925917782586793691734783351421356201171875;s:5:\"bytes\";i:30377;s:11:\"size_before\";i:227774;s:10:\"size_after\";i:197397;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2761;s:11:\"size_before\";i:21801;s:10:\"size_after\";i:19040;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:6783;s:11:\"size_before\";i:58249;s:10:\"size_after\";i:51466;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2667;s:11:\"size_before\";i:19795;s:10:\"size_after\";i:17128;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:9197;s:11:\"size_before\";i:50622;s:10:\"size_after\";i:41425;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7041;s:11:\"size_before\";i:61051;s:10:\"size_after\";i:54010;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1928;s:11:\"size_before\";i:16256;s:10:\"size_after\";i:14328;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5234,996,'_genesis_noindex','1'),(5235,996,'_genesis_nofollow','1'),(5236,996,'_genesis_noarchive','1'),(5237,964,'_genesis_noindex','1'),(5238,964,'_genesis_nofollow','1'),(5239,964,'_genesis_noarchive','1'),(5838,428,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.7130238035799596474362260778434574604034423828125;s:5:\"bytes\";i:413258;s:11:\"size_before\";i:3857529;s:10:\"size_after\";i:3444271;s:4:\"time\";d:1.07000000000000028421709430404007434844970703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4254;s:11:\"size_before\";i:29296;s:10:\"size_after\";i:25042;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:11280;s:11:\"size_before\";i:88049;s:10:\"size_after\";i:76769;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:49719;s:11:\"size_before\";i:519994;s:10:\"size_after\";i:470275;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:66020;s:11:\"size_before\";i:693559;s:10:\"size_after\";i:627539;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:4021;s:11:\"size_before\";i:27000;s:10:\"size_after\";i:22979;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:41490;s:11:\"size_before\";i:443669;s:10:\"size_after\";i:402179;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10297;s:11:\"size_before\";i:94247;s:10:\"size_after\";i:83950;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:11365;s:11:\"size_before\";i:101414;s:10:\"size_after\";i:90049;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:15838;s:11:\"size_before\";i:163417;s:10:\"size_after\";i:147579;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:23862;s:11:\"size_before\";i:258329;s:10:\"size_after\";i:234467;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:51688;s:11:\"size_before\";i:552230;s:10:\"size_after\";i:500542;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.5;s:5:\"bytes\";i:67520;s:11:\"size_before\";i:409111;s:10:\"size_after\";i:341591;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:14579;s:11:\"size_before\";i:122803;s:10:\"size_after\";i:108224;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2865;s:11:\"size_before\";i:20825;s:10:\"size_after\";i:17960;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:16508;s:11:\"size_before\";i:138244;s:10:\"size_after\";i:121736;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:21952;s:11:\"size_before\";i:195342;s:10:\"size_after\";i:173390;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5264,964,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:8:\"progress\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_progress\";a:3:{s:5:\"title\";i:1;s:7:\"percent\";i:1;s:10:\"inner_text\";i:1;}}s:5:\"style\";a:2:{s:22:\"section_progress_style\";a:4:{s:9:\"bar_color\";i:1;s:10:\"bar_height\";i:1;s:31:\"bar_inner_typography_typography\";i:1;s:30:\"bar_inner_typography_font_size\";i:1;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}}'),(5837,425,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6194982027812070413119727163575589656829833984375;s:5:\"bytes\";i:271167;s:11:\"size_before\";i:3145972;s:10:\"size_after\";i:2874805;s:4:\"time\";d:0.80000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1746;s:11:\"size_before\";i:18610;s:10:\"size_after\";i:16864;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5086;s:11:\"size_before\";i:60128;s:10:\"size_after\";i:55042;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:29658;s:11:\"size_before\";i:337360;s:10:\"size_after\";i:307702;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:49649;s:11:\"size_before\";i:555014;s:10:\"size_after\";i:505365;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1694;s:11:\"size_before\";i:18351;s:10:\"size_after\";i:16657;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:34098;s:11:\"size_before\";i:399615;s:10:\"size_after\";i:365517;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:5655;s:11:\"size_before\";i:69714;s:10:\"size_after\";i:64059;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:6033;s:11:\"size_before\";i:73211;s:10:\"size_after\";i:67178;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:10592;s:11:\"size_before\";i:127883;s:10:\"size_after\";i:117291;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:18374;s:11:\"size_before\";i:215742;s:10:\"size_after\";i:197368;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:41175;s:11:\"size_before\";i:486968;s:10:\"size_after\";i:445793;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:40362;s:11:\"size_before\";i:468397;s:10:\"size_after\";i:428035;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:6836;s:11:\"size_before\";i:79831;s:10:\"size_after\";i:72995;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1287;s:11:\"size_before\";i:14581;s:10:\"size_after\";i:13294;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:6845;s:11:\"size_before\";i:80839;s:10:\"size_after\";i:73994;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:12077;s:11:\"size_before\";i:139728;s:10:\"size_after\";i:127651;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(8119,1319,'_wp_page_template','template/template-page.php'),(8120,1319,'_elementor_edit_mode','builder'),(8121,1319,'_elementor_template_type','wp-page'),(8122,1319,'_elementor_version','3.0.9'),(8123,1319,'_elementor_data','[{\"id\":\"9dffb38\",\"elType\":\"section\",\"settings\":{\"gap\":\"wide\",\"structure\":\"21\"},\"elements\":[{\"id\":\"6662be0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":40,\"space_between_widgets\":50},\"elements\":[{\"id\":\"26f2d97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-e1534726093274.jpg\",\"id\":21},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/\",\"is_external\":\"\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"f910618\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1b914da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Lantern Team\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ecff20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0 \\u00a0 \\u00a0The team at Lantern Realty and Development is an amazing group of friendly and knowledgeable agents. Each Lantern Agent is a Licensed Realtor in the state of North Carolina, and available to assist you in the next purchase or sale of property. We take pride in providing you with the very best professional real estate services, and strive to always exceed your expectations. Contact us today to learn why our previous clients always trust Lantern with their real estate needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0125131\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e261e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2def7a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Founders\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82007ec\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"owner-broker\",\"posts_limit\":\"9\",\"orderby\":\"ID\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"7c127da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-realty-and-development\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69bfdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Kannapolis - 119 West Avenue Kannapolis, North Carolina 28081 - <\\/br>Covering Kannapolis and Southern Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4725e42\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"1da1848\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70b6e94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Downtown Salisbury - 105 North Main Street - Suite B Salisbury, North Carolina 28144 <\\/br>Covering Rowan County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9cd6f2\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"3c0e6a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b3dbbd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">6477 Morehead Road Harrisburg, North Carolina 28075 <\\/br>Covering Greater Cabarrus County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"47a0d7b\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"18a8a0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Albemarle Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c3a043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">118 East Main Street Albemarle, North Carolina 28001 <\\/br>Covering Stanly County<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df2e989\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"albemarle\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"},{\"id\":\"fd8cf7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mooresville Office Agents\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/agency\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0271bd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Located in Langtree Village - 106 Langtree Village Drive - Suite 301 Mooresville, North Carolina 28117 <\\/br>Covering Iredell County and Lake Norman Area<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7cbede6\",\"elType\":\"widget\",\"settings\":{\"agent_category\":\"mooresville\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\",\"columns\":\"4\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":false}],\"isInner\":false}]'),(5830,387,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.03317676783699852194331469945609569549560546875;s:5:\"bytes\";i:192911;s:11:\"size_before\";i:1922731;s:10:\"size_after\";i:1729820;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2054;s:11:\"size_before\";i:20565;s:10:\"size_after\";i:18511;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5808;s:11:\"size_before\";i:66242;s:10:\"size_after\";i:60434;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:50967;s:11:\"size_before\";i:256726;s:10:\"size_after\";i:205759;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18511;s:10:\"size_after\";i:18511;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:21496;s:11:\"size_before\";i:244574;s:10:\"size_after\";i:223078;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6311;s:11:\"size_before\";i:71701;s:10:\"size_after\";i:65390;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:6645;s:11:\"size_before\";i:76189;s:10:\"size_after\";i:69544;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:10818;s:11:\"size_before\";i:123878;s:10:\"size_after\";i:113060;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:17149;s:11:\"size_before\";i:176924;s:10:\"size_after\";i:159775;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26968;s:11:\"size_before\";i:289826;s:10:\"size_after\";i:262858;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:23147;s:11:\"size_before\";i:247903;s:10:\"size_after\";i:224756;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7353;s:11:\"size_before\";i:85740;s:10:\"size_after\";i:78387;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1675;s:11:\"size_before\";i:15862;s:10:\"size_after\";i:14187;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78387;s:10:\"size_after\";i:78387;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:12520;s:11:\"size_before\";i:149703;s:10:\"size_after\";i:137183;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5831,391,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.8562907696036585747378921951167285442352294921875;s:5:\"bytes\";i:8404;s:11:\"size_before\";i:94893;s:10:\"size_after\";i:86489;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1669;s:11:\"size_before\";i:18349;s:10:\"size_after\";i:16680;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1633;s:11:\"size_before\";i:17265;s:10:\"size_after\";i:15632;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3830;s:11:\"size_before\";i:45446;s:10:\"size_after\";i:41616;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1272;s:11:\"size_before\";i:13833;s:10:\"size_after\";i:12561;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5829,384,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.40895612481563858864319627173244953155517578125;s:5:\"bytes\";i:103366;s:11:\"size_before\";i:1229237;s:10:\"size_after\";i:1125871;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1543;s:11:\"size_before\";i:15923;s:10:\"size_after\";i:14380;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:4483;s:11:\"size_before\";i:50621;s:10:\"size_after\";i:46138;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14380;s:10:\"size_after\";i:14380;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:14331;s:11:\"size_before\";i:168693;s:10:\"size_after\";i:154362;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:4713;s:11:\"size_before\";i:56349;s:10:\"size_after\";i:51636;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:4946;s:11:\"size_before\";i:59103;s:10:\"size_after\";i:54157;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8673;s:11:\"size_before\";i:98327;s:10:\"size_after\";i:89654;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:11542;s:11:\"size_before\";i:128961;s:10:\"size_after\";i:117419;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:19614;s:11:\"size_before\";i:206047;s:10:\"size_after\";i:186433;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16488;s:11:\"size_before\";i:180685;s:10:\"size_after\";i:164197;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5829;s:11:\"size_before\";i:65525;s:10:\"size_after\";i:59696;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1217;s:11:\"size_before\";i:12464;s:10:\"size_after\";i:11247;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59696;s:10:\"size_after\";i:59696;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:9987;s:11:\"size_before\";i:112463;s:10:\"size_after\";i:102476;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(5274,1055,'_wp_attached_file','2020/10/Ellen_Thomas.jpg'),(5275,1055,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:633;s:4:\"file\";s:24:\"2020/10/Ellen_Thomas.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-600x564.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-569x600.jpg\";s:5:\"width\";i:569;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"Ellen_Thomas-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"Ellen_Thomas-496x523.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"XT1575\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1532615335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.67\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.03333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5276,1056,'_wp_attached_file','2020/10/IMG_0437.jpg'),(5277,1056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:306;s:6:\"height\";i:397;s:4:\"file\";s:20:\"2020/10/IMG_0437.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0437-231x300.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0437-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"IMG_0437-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:\"1452095078\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5278,1057,'_wp_attached_file','2020/10/Donna_Hawkins-1-scaled.jpg'),(5279,1057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2061;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/10/Donna_Hawkins-1-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-242x300.jpg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Donna_Hawkins-1-824x1024.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-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:27:\"Donna_Hawkins-1-768x954.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:954;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"Donna_Hawkins-1-1237x1536.jpg\";s:5:\"width\";i:1237;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"Donna_Hawkins-1-1649x2048.jpg\";s:5:\"width\";i:1649;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:28:\"Donna_Hawkins-1-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-483x600.jpg\";s:5:\"width\";i:483;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Donna_Hawkins-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Donna_Hawkins-1-496x616.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:616;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"Donna_Hawkins-1.jpg\";}'),(5827,378,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.0453437493970536564802387147210538387298583984375;s:5:\"bytes\";i:103044;s:11:\"size_before\";i:932918;s:10:\"size_after\";i:829874;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2779;s:11:\"size_before\";i:24294;s:10:\"size_after\";i:21515;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7597;s:11:\"size_before\";i:76132;s:10:\"size_after\";i:68535;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21515;s:10:\"size_after\";i:21515;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:8009;s:11:\"size_before\";i:81852;s:10:\"size_after\";i:73843;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8435;s:11:\"size_before\";i:85738;s:10:\"size_after\";i:77303;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:12913;s:11:\"size_before\";i:135876;s:10:\"size_after\";i:122963;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:26969;s:11:\"size_before\";i:134092;s:10:\"size_after\";i:107123;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9356;s:11:\"size_before\";i:96904;s:10:\"size_after\";i:87548;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2143;s:11:\"size_before\";i:18348;s:10:\"size_after\";i:16205;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9381;s:11:\"size_before\";i:97089;s:10:\"size_after\";i:87708;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:15462;s:11:\"size_before\";i:161078;s:10:\"size_after\";i:145616;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5828,381,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.56034947686333680394454859197139739990234375;s:5:\"bytes\";i:17523;s:11:\"size_before\";i:231775;s:10:\"size_after\";i:214252;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1536;s:11:\"size_before\";i:19457;s:10:\"size_after\";i:17921;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4836;s:11:\"size_before\";i:61584;s:10:\"size_after\";i:56748;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17921;s:10:\"size_after\";i:17921;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4832;s:11:\"size_before\";i:56959;s:10:\"size_after\";i:52127;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5175;s:11:\"size_before\";i:61404;s:10:\"size_after\";i:56229;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1144;s:11:\"size_before\";i:14450;s:10:\"size_after\";i:13306;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5826,374,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.913672762093852952602901495993137359619140625;s:5:\"bytes\";i:101463;s:11:\"size_before\";i:1138285;s:10:\"size_after\";i:1036822;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1839;s:11:\"size_before\";i:20368;s:10:\"size_after\";i:18529;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5167;s:11:\"size_before\";i:63313;s:10:\"size_after\";i:58146;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18529;s:10:\"size_after\";i:18529;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:16056;s:11:\"size_before\";i:173351;s:10:\"size_after\";i:157295;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5439;s:11:\"size_before\";i:66771;s:10:\"size_after\";i:61332;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5796;s:11:\"size_before\";i:70621;s:10:\"size_after\";i:64825;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:10030;s:11:\"size_before\";i:109705;s:10:\"size_after\";i:99675;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:13267;s:11:\"size_before\";i:131680;s:10:\"size_after\";i:118413;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:17450;s:11:\"size_before\";i:172866;s:10:\"size_after\";i:155416;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6707;s:11:\"size_before\";i:80773;s:10:\"size_after\";i:74066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1333;s:11:\"size_before\";i:15314;s:10:\"size_after\";i:13981;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6673;s:11:\"size_before\";i:80813;s:10:\"size_after\";i:74140;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11706;s:11:\"size_before\";i:134181;s:10:\"size_after\";i:122475;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5824,362,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.9751121277078862448206564295105636119842529296875;s:5:\"bytes\";i:86167;s:11:\"size_before\";i:960066;s:10:\"size_after\";i:873899;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:2155;s:11:\"size_before\";i:22941;s:10:\"size_after\";i:20786;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6268;s:11:\"size_before\";i:72212;s:10:\"size_after\";i:65944;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1937;s:11:\"size_before\";i:21290;s:10:\"size_after\";i:19353;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7370;s:11:\"size_before\";i:81609;s:10:\"size_after\";i:74239;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7814;s:11:\"size_before\";i:86693;s:10:\"size_after\";i:78879;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:12004;s:11:\"size_before\";i:131455;s:10:\"size_after\";i:119451;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:14773;s:11:\"size_before\";i:162456;s:10:\"size_after\";i:147683;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:8871;s:11:\"size_before\";i:99758;s:10:\"size_after\";i:90887;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1706;s:11:\"size_before\";i:17509;s:10:\"size_after\";i:15803;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9540;s:11:\"size_before\";i:107929;s:10:\"size_after\";i:98389;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13729;s:11:\"size_before\";i:156214;s:10:\"size_after\";i:142485;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5825,372,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.92833522621018715881291427649557590484619140625;s:5:\"bytes\";i:78299;s:11:\"size_before\";i:876972;s:10:\"size_after\";i:798673;s:4:\"time\";d:0.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2802;s:11:\"size_before\";i:23807;s:10:\"size_after\";i:21005;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7710;s:11:\"size_before\";i:73505;s:10:\"size_after\";i:65795;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21005;s:10:\"size_after\";i:21005;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:6920;s:11:\"size_before\";i:70738;s:10:\"size_after\";i:63818;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7514;s:11:\"size_before\";i:75673;s:10:\"size_after\";i:68159;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:11540;s:11:\"size_before\";i:113774;s:10:\"size_after\";i:102234;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:14179;s:11:\"size_before\";i:148293;s:10:\"size_after\";i:134114;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:9871;s:11:\"size_before\";i:94169;s:10:\"size_after\";i:84298;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1843;s:11:\"size_before\";i:16790;s:10:\"size_after\";i:14947;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:84298;s:10:\"size_after\";i:84298;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:15920;s:11:\"size_before\";i:154920;s:10:\"size_after\";i:139000;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5802,133,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.030200558496400020658256835304200649261474609375;s:5:\"bytes\";i:106728;s:11:\"size_before\";i:967598;s:10:\"size_after\";i:860870;s:4:\"time\";d:0.30999999999999994226840271949185989797115325927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1680;s:11:\"size_before\";i:15216;s:10:\"size_after\";i:13536;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4926;s:11:\"size_before\";i:44185;s:10:\"size_after\";i:39259;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1605;s:11:\"size_before\";i:14485;s:10:\"size_after\";i:12880;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:16920;s:11:\"size_before\";i:106400;s:10:\"size_after\";i:89480;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5293;s:11:\"size_before\";i:47916;s:10:\"size_after\";i:42623;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5678;s:11:\"size_before\";i:50712;s:10:\"size_after\";i:45034;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:9914;s:11:\"size_before\";i:82372;s:10:\"size_after\";i:72458;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:8376;s:11:\"size_before\";i:95889;s:10:\"size_after\";i:87513;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:14494;s:11:\"size_before\";i:154526;s:10:\"size_after\";i:140032;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11939;s:11:\"size_before\";i:130417;s:10:\"size_after\";i:118478;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:6533;s:11:\"size_before\";i:58121;s:10:\"size_after\";i:51588;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1311;s:11:\"size_before\";i:11754;s:10:\"size_after\";i:10443;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6958;s:11:\"size_before\";i:60861;s:10:\"size_after\";i:53903;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11101;s:11:\"size_before\";i:94744;s:10:\"size_after\";i:83643;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5294,1060,'_wp_attached_file','2020/10/IMG_7662_jpg-scaled.jpg'),(5295,1060,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1801;s:6:\"height\";i:2560;s:4:\"file\";s:31:\"2020/10/IMG_7662_jpg-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-211x300.jpg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"IMG_7662_jpg-721x1024.jpg\";s:5:\"width\";i:721;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-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:25:\"IMG_7662_jpg-768x1091.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1091;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"IMG_7662_jpg-1081x1536.jpg\";s:5:\"width\";i:1081;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"IMG_7662_jpg-1441x2048.jpg\";s:5:\"width\";i:1441;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:25:\"IMG_7662_jpg-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-422x600.jpg\";s:5:\"width\";i:422;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"IMG_7662_jpg-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:24:\"IMG_7662_jpg-496x705.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:705;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:9:\"iPhone 11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602238655\";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:{}}s:14:\"original_image\";s:16:\"IMG_7662_jpg.jpg\";}'),(5296,1061,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5297,1062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5298,1063,'_wp_attached_file','2020/10/Lantern-Logo-1.jpeg'),(5299,1063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:740;s:4:\"file\";s:27:\"2020/10/Lantern-Logo-1.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-300x173.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Lantern-Logo-1-1024x592.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-768x444.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:28:\"Lantern-Logo-1-1170x740.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-592x444.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-758x564.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-584x438.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:28:\"Lantern-Logo-1-1038x600.jpeg\";s:5:\"width\";i:1038;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"Lantern-Logo-1-120x90.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"Lantern-Logo-1-496x287.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:9:\"faraz ali\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1526127625\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(8711,1413,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8712,1414,'_wp_attached_file','2020/11/LRD-56-Safety-Tips.pdf'),(5823,359,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.1860790690512263978462215163744986057281494140625;s:5:\"bytes\";i:319498;s:11:\"size_before\";i:3902943;s:10:\"size_after\";i:3583445;s:4:\"time\";d:0.8400000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2334;s:11:\"size_before\";i:23041;s:10:\"size_after\";i:20707;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6972;s:11:\"size_before\";i:75755;s:10:\"size_after\";i:68783;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:35387;s:11:\"size_before\";i:432904;s:10:\"size_after\";i:397517;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:54935;s:11:\"size_before\";i:697229;s:10:\"size_after\";i:642294;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2372;s:11:\"size_before\";i:22921;s:10:\"size_after\";i:20549;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:38440;s:11:\"size_before\";i:485011;s:10:\"size_after\";i:446571;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:7912;s:11:\"size_before\";i:85927;s:10:\"size_after\";i:78015;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8387;s:11:\"size_before\";i:91094;s:10:\"size_after\";i:82707;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:13268;s:11:\"size_before\";i:154955;s:10:\"size_after\";i:141687;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:21277;s:11:\"size_before\";i:259275;s:10:\"size_after\";i:237998;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:46848;s:11:\"size_before\";i:596187;s:10:\"size_after\";i:549339;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:45625;s:11:\"size_before\";i:579347;s:10:\"size_after\";i:533722;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:9140;s:11:\"size_before\";i:101448;s:10:\"size_after\";i:92308;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1939;s:11:\"size_before\";i:17957;s:10:\"size_after\";i:16018;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9220;s:11:\"size_before\";i:103430;s:10:\"size_after\";i:94210;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.75;s:5:\"bytes\";i:15442;s:11:\"size_before\";i:176462;s:10:\"size_after\";i:161020;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5821,326,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1251038;s:10:\"size_after\";i:1251038;s:4:\"time\";d:0.970000000000000195399252334027551114559173583984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53265;s:10:\"size_after\";i:53265;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:86704;s:10:\"size_after\";i:86704;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24501;s:10:\"size_after\";i:24501;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:197213;s:10:\"size_after\";i:197213;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:208078;s:10:\"size_after\";i:208078;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:320461;s:10:\"size_after\";i:320461;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:206371;s:10:\"size_after\";i:206371;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39990;s:10:\"size_after\";i:39990;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114455;s:10:\"size_after\";i:114455;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(5822,356,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.61587195731910782114937319420278072357177734375;s:5:\"bytes\";i:26415;s:11:\"size_before\";i:149950;s:10:\"size_after\";i:123535;s:4:\"time\";d:0.6700000000000001509903313490212894976139068603515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1985;s:11:\"size_before\";i:11643;s:10:\"size_after\";i:9658;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5009;s:11:\"size_before\";i:18452;s:10:\"size_after\";i:13443;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1585;s:11:\"size_before\";i:6305;s:10:\"size_after\";i:4720;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1969;s:11:\"size_before\";i:18605;s:10:\"size_after\";i:16636;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2078;s:11:\"size_before\";i:18316;s:10:\"size_after\";i:16238;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3868;s:11:\"size_before\";i:27228;s:10:\"size_after\";i:23360;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1788;s:11:\"size_before\";i:17038;s:10:\"size_after\";i:15250;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1770;s:11:\"size_before\";i:9239;s:10:\"size_after\";i:7469;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6363;s:11:\"size_before\";i:23124;s:10:\"size_after\";i:16761;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5820,323,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8354407489323829594241033191792666912078857421875;s:5:\"bytes\";i:35353;s:11:\"size_before\";i:359445;s:10:\"size_after\";i:324092;s:4:\"time\";d:0.2000000000000000388578058618804789148271083831787109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1941;s:11:\"size_before\";i:20295;s:10:\"size_after\";i:18354;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:5000;s:11:\"size_before\";i:52876;s:10:\"size_after\";i:47876;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1647;s:11:\"size_before\";i:17440;s:10:\"size_after\";i:15793;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5412;s:11:\"size_before\";i:55787;s:10:\"size_after\";i:50375;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5910;s:11:\"size_before\";i:55500;s:10:\"size_after\";i:49590;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:6794;s:11:\"size_before\";i:70758;s:10:\"size_after\";i:63964;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:7167;s:11:\"size_before\";i:71371;s:10:\"size_after\";i:64204;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1482;s:11:\"size_before\";i:15418;s:10:\"size_after\";i:13936;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5819,320,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.668994010488138002301639062352478504180908203125;s:5:\"bytes\";i:137750;s:11:\"size_before\";i:1424657;s:10:\"size_after\";i:1286907;s:4:\"time\";d:0.5800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2500;s:11:\"size_before\";i:23279;s:10:\"size_after\";i:20779;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:7065;s:11:\"size_before\";i:70376;s:10:\"size_after\";i:63311;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2379;s:11:\"size_before\";i:22025;s:10:\"size_after\";i:19646;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:22268;s:11:\"size_before\";i:245366;s:10:\"size_after\";i:223098;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:7307;s:11:\"size_before\";i:75209;s:10:\"size_after\";i:67902;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7938;s:11:\"size_before\";i:80039;s:10:\"size_after\";i:72101;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12675;s:11:\"size_before\";i:123562;s:10:\"size_after\";i:110887;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:16125;s:11:\"size_before\";i:173449;s:10:\"size_after\";i:157324;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:23500;s:11:\"size_before\";i:250936;s:10:\"size_after\";i:227436;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9286;s:11:\"size_before\";i:94255;s:10:\"size_after\";i:84969;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1774;s:11:\"size_before\";i:17117;s:10:\"size_after\";i:15343;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:9989;s:11:\"size_before\";i:100695;s:10:\"size_after\";i:90706;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:14944;s:11:\"size_before\";i:148349;s:10:\"size_after\";i:133405;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5340,1000,'_elementor_controls_usage','a:7:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:5;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:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;s:4:\"link\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(5367,882,'passster_activate_protection','true'),(5368,882,'passster_protection_type','password'),(5369,882,'passster_password','lantern704'),(5805,142,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.00711248451725765562514425255358219146728515625;s:5:\"bytes\";i:94820;s:11:\"size_before\";i:861443;s:10:\"size_after\";i:766623;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1451;s:11:\"size_before\";i:14743;s:10:\"size_after\";i:13292;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4663;s:11:\"size_before\";i:44768;s:10:\"size_after\";i:40105;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1324;s:11:\"size_before\";i:13778;s:10:\"size_after\";i:12454;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14787;s:11:\"size_before\";i:141467;s:10:\"size_after\";i:126680;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5122;s:11:\"size_before\";i:49196;s:10:\"size_after\";i:44074;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5462;s:11:\"size_before\";i:51747;s:10:\"size_after\";i:46285;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9182;s:11:\"size_before\";i:82341;s:10:\"size_after\";i:73159;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:14366;s:11:\"size_before\";i:90867;s:10:\"size_after\";i:76501;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:13390;s:11:\"size_before\";i:140082;s:10:\"size_after\";i:126692;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6309;s:11:\"size_before\";i:59975;s:10:\"size_after\";i:53666;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:10;s:5:\"bytes\";i:1124;s:11:\"size_before\";i:11235;s:10:\"size_after\";i:10111;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:6588;s:11:\"size_before\";i:62852;s:10:\"size_after\";i:56264;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11052;s:11:\"size_before\";i:98392;s:10:\"size_after\";i:87340;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5377,1000,'passster_activate_protection','true'),(5378,1000,'passster_protection_type','password'),(5379,1000,'passster_password','lantern704'),(5804,139,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1410699272516335867067027720622718334197998046875;s:5:\"bytes\";i:143177;s:11:\"size_before\";i:1411853;s:10:\"size_after\";i:1268676;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2194;s:11:\"size_before\";i:23400;s:10:\"size_after\";i:21206;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6262;s:11:\"size_before\";i:70989;s:10:\"size_after\";i:64727;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:2045;s:11:\"size_before\";i:21535;s:10:\"size_after\";i:19490;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:21567;s:11:\"size_before\";i:229709;s:10:\"size_after\";i:208142;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7318;s:11:\"size_before\";i:81163;s:10:\"size_after\";i:73845;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:7651;s:11:\"size_before\";i:85585;s:10:\"size_after\";i:77934;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:12792;s:11:\"size_before\";i:133842;s:10:\"size_after\";i:121050;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:26687;s:11:\"size_before\";i:155277;s:10:\"size_after\";i:128590;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:22629;s:11:\"size_before\";i:229988;s:10:\"size_after\";i:207359;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:8856;s:11:\"size_before\";i:98922;s:10:\"size_after\";i:90066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1695;s:11:\"size_before\";i:17562;s:10:\"size_after\";i:15867;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:9745;s:11:\"size_before\";i:110519;s:10:\"size_after\";i:100774;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:13736;s:11:\"size_before\";i:153362;s:10:\"size_after\";i:139626;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5387,998,'passster_activate_protection','true'),(5388,998,'passster_protection_type','password'),(5389,998,'passster_password','lantern704'),(5390,996,'passster_activate_protection','true'),(5391,996,'passster_protection_type','password'),(5392,996,'passster_password','lantern704'),(5393,1078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5394,1078,'_menu_item_type','post_type'),(5395,1078,'_menu_item_menu_item_parent','0'),(5396,1078,'_menu_item_object_id','882'),(5397,1078,'_menu_item_object','page'),(5398,1078,'_menu_item_target',''),(5399,1078,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5400,1078,'_menu_item_xfn',''),(5401,1078,'_menu_item_url',''),(5405,1080,'_wp_attached_file','2020/10/lantern_3_REV_LOGO.png'),(5406,1080,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2229;s:6:\"height\";i:1287;s:4:\"file\";s:30:\"2020/10/lantern_3_REV_LOGO.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1024x591.png\";s:5:\"width\";i:1024;s:6:\"height\";i:591;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-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:\"lantern_3_REV_LOGO-768x443.png\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1536x887.png\";s:5:\"width\";i:1536;s:6:\"height\";i:887;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"lantern_3_REV_LOGO-2048x1182.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1182;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1170x785.png\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-592x444.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-758x564.png\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-584x438.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:31:\"lantern_3_REV_LOGO-1039x600.png\";s:5:\"width\";i:1039;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:29:\"lantern_3_REV_LOGO-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:30:\"lantern_3_REV_LOGO-496x286.png\";s:5:\"width\";i:496;s:6:\"height\";i:286;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:{}}}'),(5803,136,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.4467719494974655702890231623314321041107177734375;s:5:\"bytes\";i:145574;s:11:\"size_before\";i:1540992;s:10:\"size_after\";i:1395418;s:4:\"time\";d:0.6999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1959;s:11:\"size_before\";i:21039;s:10:\"size_after\";i:19080;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5430;s:11:\"size_before\";i:62596;s:10:\"size_after\";i:57166;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1896;s:11:\"size_before\";i:19725;s:10:\"size_after\";i:17829;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:30353;s:11:\"size_before\";i:193406;s:10:\"size_after\";i:163053;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5860;s:11:\"size_before\";i:69125;s:10:\"size_after\";i:63265;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:6284;s:11:\"size_before\";i:73641;s:10:\"size_after\";i:67357;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:10603;s:11:\"size_before\";i:114794;s:10:\"size_after\";i:104191;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:12666;s:11:\"size_before\";i:152039;s:10:\"size_after\";i:139373;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:22274;s:11:\"size_before\";i:270178;s:10:\"size_after\";i:247904;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:18220;s:11:\"size_before\";i:221261;s:10:\"size_after\";i:203041;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:7497;s:11:\"size_before\";i:88066;s:10:\"size_after\";i:80569;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:1396;s:11:\"size_before\";i:15509;s:10:\"size_after\";i:14113;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:9002;s:11:\"size_before\";i:103564;s:10:\"size_after\";i:94562;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12134;s:11:\"size_before\";i:136049;s:10:\"size_after\";i:123915;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5800,127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.363057722698680862549736048094928264617919921875;s:5:\"bytes\";i:149896;s:11:\"size_before\";i:1600930;s:10:\"size_after\";i:1451034;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2879;s:11:\"size_before\";i:25715;s:10:\"size_after\";i:22836;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:8003;s:11:\"size_before\";i:81770;s:10:\"size_after\";i:73767;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2803;s:11:\"size_before\";i:25581;s:10:\"size_after\";i:22778;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:25076;s:11:\"size_before\";i:279599;s:10:\"size_after\";i:254523;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7873;s:11:\"size_before\";i:83463;s:10:\"size_after\";i:75590;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:8525;s:11:\"size_before\";i:89181;s:10:\"size_after\";i:80656;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:13248;s:11:\"size_before\";i:135684;s:10:\"size_after\";i:122436;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:17601;s:11:\"size_before\";i:196148;s:10:\"size_after\";i:178547;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:25161;s:11:\"size_before\";i:276787;s:10:\"size_after\";i:251626;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:10062;s:11:\"size_before\";i:106098;s:10:\"size_after\";i:96036;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2073;s:11:\"size_before\";i:18892;s:10:\"size_after\";i:16819;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:10190;s:11:\"size_before\";i:108413;s:10:\"size_after\";i:98223;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:16402;s:11:\"size_before\";i:173599;s:10:\"size_after\";i:157197;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5801,130,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.2372245412807263420518211205489933490753173828125;s:5:\"bytes\";i:77058;s:11:\"size_before\";i:935485;s:10:\"size_after\";i:858427;s:4:\"time\";d:0.450000000000000122124532708767219446599483489990234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1519;s:11:\"size_before\";i:16075;s:10:\"size_after\";i:14556;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4181;s:11:\"size_before\";i:48055;s:10:\"size_after\";i:43874;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1416;s:11:\"size_before\";i:15028;s:10:\"size_after\";i:13612;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10285;s:11:\"size_before\";i:145364;s:10:\"size_after\";i:135079;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4902;s:11:\"size_before\";i:55086;s:10:\"size_after\";i:50184;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5101;s:11:\"size_before\";i:57639;s:10:\"size_after\";i:52538;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:8376;s:11:\"size_before\";i:91095;s:10:\"size_after\";i:82719;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:8224;s:11:\"size_before\";i:105672;s:10:\"size_after\";i:97448;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:10878;s:11:\"size_before\";i:149397;s:10:\"size_after\";i:138519;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:5796;s:11:\"size_before\";i:66155;s:10:\"size_after\";i:60359;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1180;s:11:\"size_before\";i:12502;s:10:\"size_after\";i:11322;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5965;s:11:\"size_before\";i:68910;s:10:\"size_after\";i:62945;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9235;s:11:\"size_before\";i:104507;s:10:\"size_after\";i:95272;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5777,782,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.0578959740461737482064563664607703685760498046875;s:5:\"bytes\";i:187201;s:11:\"size_before\";i:1433623;s:10:\"size_after\";i:1246422;s:4:\"time\";d:0.3200000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4719;s:11:\"size_before\";i:41904;s:10:\"size_after\";i:37185;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:44900;s:11:\"size_before\";i:323920;s:10:\"size_after\";i:279020;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1767;s:11:\"size_before\";i:16262;s:10:\"size_after\";i:14495;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:27246;s:11:\"size_before\";i:201173;s:10:\"size_after\";i:173927;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:26508;s:11:\"size_before\";i:220236;s:10:\"size_after\";i:193728;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:13831;s:11:\"size_before\";i:106565;s:10:\"size_after\";i:92734;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:21784;s:11:\"size_before\";i:162091;s:10:\"size_after\";i:140307;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13144;s:11:\"size_before\";i:102766;s:10:\"size_after\";i:89622;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:20348;s:11:\"size_before\";i:154121;s:10:\"size_after\";i:133773;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:923;s:11:\"size_before\";i:8915;s:10:\"size_after\";i:7992;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:12031;s:11:\"size_before\";i:95670;s:10:\"size_after\";i:83639;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5421,1083,'_elementor_edit_mode','builder'),(5422,1083,'_elementor_template_type','section'),(5423,1083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5424,1083,'_elementor_version','3.0.11'),(5428,1083,'_wp_page_template','default'),(5429,1083,'_elementor_data','[{\"id\":\"5d54517f\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"388d1602\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1efdf2d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signs and Business Cards\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d6c6034\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"79cceac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36bdcf06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><strong>Business Card Vendor:<\\/strong><\\/div><div>Omega Graphics<\\/div><div>293 Brookdale Street, Kannapolis, NC 28083<\\/div><div>Phone: (704) 933-5715<\\/div><div>\\u00a0<\\/div><div>Reference Business Card<br \\/>2 Sided, Full Color, 14pt UV Coated<\\/div><div>\\u00a0<\\/div><div>Online Vendor:<\\/div><p><a href=\\\"https:\\/\\/www.houseofmagnets.com\\/\\\">https:\\/\\/www.houseofmagnets.com\\/<\\/a><\\/p><p>Great for:<\\/p><ul><li>Business Cards<\\/li><li>Magnets<\\/li><li>Apparel<\\/li><li>Signs<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"71635036\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"59edc133\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/LANTERN_BC_cmp.jpg\",\"id\":906},\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dbf3c94\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"56cd66aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7da2769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3386a3c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><strong>Sign Vendor:<\\/strong><\\/div><div>Omega Graphics<\\/div><div>293 Brookdale Street, Kannapolis, NC 28083<\\/div><div>Phone: (704) 933-5715<\\/div><div>\\u00a0<\\/div><div>Reference Information<\\/div><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"text_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"549d4064\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e89b284\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Yard-signs-All-8-17-08.jpg\",\"id\":910},\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"26719f64\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"267ae72e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Email Signature\",\"size\":\"xl\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12f249f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #0b5394;\\\"><b>John Smith\\u00a0<\\/b><br \\/><\\/span><\\/div><div><div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #0b5394;\\\"><b>Lantern Realty &amp; Development<\\/b><\\/span><\\/div><div><span style=\\\"font-family: garamond, \'times new roman\', serif; color: #000000;\\\"><i>Licensed Realtor<\\/i><br \\/><\\/span><\\/div><div><span style=\\\"font-family: garamond, times new roman, serif;\\\"><span style=\\\"color: #000000;\\\"><b>Phone: (555) 555-5555<\\/b>\\u00a0<\\/span><br \\/><\\/span><\\/div><\\/div><div><span style=\\\"font-family: garamond, times new roman, serif;\\\"><a href=\\\"https:\\/\\/lantern-realty.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" data-saferedirecturl=\\\"https:\\/\\/www.google.com\\/url?q=https:\\/\\/lantern-realty.com\\/&amp;source=gmail&amp;ust=1602518659720000&amp;usg=AFQjCNHqdvTLiGoDEvr-Znne2j_FeROb2Q\\\">Let Us Guide You Home<\\/a><br \\/><\\/span><\\/div><div><img class=\\\"CToWUd\\\" src=\\\"https:\\/\\/ci3.googleusercontent.com\\/proxy\\/74nNqDIzJuR_wWjaTkJvrx5eip9Ni17jksYQSrMkwfZfpbCBw9NkOLtcpopvST_U1bIZr7COpojscD2oXuQPL5y-vPib9iU40jAZT3zGFBKsC7_lBAFnNsSboEgRzyXI7ZCSUEGc2besDA5DjHmzGSwVqgD0GnIBkw=s0-d-e1-ft#https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/lantern_3_REV_LOGO-1-e1535144736200-1024x388.jpg\\\" width=\\\"200\\\" height=\\\"75\\\" \\/><\\/div><div><i><b><span style=\\\"color: #0b5394;\\\"><span style=\\\"font-family: garamond, times new roman, serif;\\\">Proudly Servi<\\/span><span style=\\\"font-family: garamond, times new roman, serif;\\\">ng Cabarrus, Rowan, Stanly, Iredell, Mecklenburg and surrounding\\u00a0areas<\\/span><\\/span><\\/b><\\/i><\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19d87342\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"26a73d69\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5799,124,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.501042349298611355834509595297276973724365234375;s:5:\"bytes\";i:193753;s:11:\"size_before\";i:1684656;s:10:\"size_after\";i:1490903;s:4:\"time\";d:0.420000000000000095479180117763462476432323455810546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2354;s:11:\"size_before\";i:19758;s:10:\"size_after\";i:17404;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7045;s:11:\"size_before\";i:59178;s:10:\"size_after\";i:52133;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:33804;s:11:\"size_before\";i:276208;s:10:\"size_after\";i:242404;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2264;s:11:\"size_before\";i:18190;s:10:\"size_after\";i:15926;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19118;s:11:\"size_before\";i:187874;s:10:\"size_after\";i:168756;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:7234;s:11:\"size_before\";i:60946;s:10:\"size_after\";i:53712;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:7716;s:11:\"size_before\";i:65326;s:10:\"size_after\";i:57610;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11631;s:11:\"size_before\";i:99251;s:10:\"size_after\";i:87620;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:17841;s:11:\"size_before\";i:146436;s:10:\"size_after\";i:128595;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:26041;s:11:\"size_before\";i:246425;s:10:\"size_after\";i:220384;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:19861;s:11:\"size_before\";i:192427;s:10:\"size_after\";i:172566;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:10111;s:11:\"size_before\";i:81605;s:10:\"size_after\";i:71494;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1639;s:11:\"size_before\";i:14013;s:10:\"size_after\";i:12374;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9563;s:11:\"size_before\";i:77054;s:10:\"size_after\";i:67491;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:17531;s:11:\"size_before\";i:139965;s:10:\"size_after\";i:122434;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5435,1083,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;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:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:5:\"align\";i:2;s:7:\"link_to\";i:2;s:13:\"open_lightbox\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:8:\"overflow\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:3;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}}'),(5778,747,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.374486110651556458606137312017381191253662109375;s:5:\"bytes\";i:376816;s:11:\"size_before\";i:4019591;s:10:\"size_after\";i:3642775;s:4:\"time\";d:0.7500000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:6842;s:11:\"size_before\";i:72868;s:10:\"size_after\";i:66026;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:54217;s:11:\"size_before\";i:599960;s:10:\"size_after\";i:545743;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2245;s:11:\"size_before\";i:22437;s:10:\"size_after\";i:20192;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:35680;s:11:\"size_before\";i:384657;s:10:\"size_after\";i:348977;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:118965;s:11:\"size_before\";i:1242286;s:10:\"size_after\";i:1123321;s:4:\"time\";d:0.25;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:52666;s:11:\"size_before\";i:577500;s:10:\"size_after\";i:524834;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:18292;s:11:\"size_before\";i:193315;s:10:\"size_after\";i:175023;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:27689;s:11:\"size_before\";i:298800;s:10:\"size_after\";i:271111;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:17692;s:11:\"size_before\";i:188875;s:10:\"size_after\";i:171183;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:24289;s:11:\"size_before\";i:249980;s:10:\"size_after\";i:225691;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1347;s:11:\"size_before\";i:12408;s:10:\"size_after\";i:11061;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:16892;s:11:\"size_before\";i:176505;s:10:\"size_after\";i:159613;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5506,882,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6673,1171,'_wp_page_template','template/template-onepage.php'),(6674,1171,'_elementor_edit_mode','builder'),(6675,1171,'_elementor_template_type','wp-page'),(6676,1171,'_elementor_version','3.0.11'),(6677,1171,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a626a\",\"elType\":\"widget\",\"settings\":{\"eael_post_grid_columns\":\"eael-col-1\",\"show_load_more_text\":\"Load More\",\"eael_excerpt_length\":100,\"excerpt_expanison_indicator\":\"...\",\"eael_read_more_text\":\"Read More\",\"read_more_button_text\":\"Read More\",\"image_link_nofollow\":\"true\",\"title_link_nofollow\":\"true\",\"read_more_link_nofollow\":\"true\"},\"elements\":[],\"widgetType\":\"eael-post-grid\"},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5786,615,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.5111939282101172210559525410644710063934326171875;s:5:\"bytes\";i:331855;s:11:\"size_before\";i:3157158;s:10:\"size_after\";i:2825303;s:4:\"time\";d:0.640000000000000124344978758017532527446746826171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9820;s:11:\"size_before\";i:84198;s:10:\"size_after\";i:74378;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3320;s:11:\"size_before\";i:26594;s:10:\"size_after\";i:23274;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:51154;s:11:\"size_before\";i:504489;s:10:\"size_after\";i:453335;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:3053;s:11:\"size_before\";i:24303;s:10:\"size_after\";i:21250;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:40180;s:11:\"size_before\";i:390666;s:10:\"size_after\";i:350486;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10586;s:11:\"size_before\";i:97010;s:10:\"size_after\";i:86424;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:11456;s:11:\"size_before\";i:103316;s:10:\"size_after\";i:91860;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:17594;s:11:\"size_before\";i:170006;s:10:\"size_after\";i:152412;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:26029;s:11:\"size_before\";i:258852;s:10:\"size_after\";i:232823;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:49464;s:11:\"size_before\";i:481206;s:10:\"size_after\";i:431742;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:40465;s:11:\"size_before\";i:395664;s:10:\"size_after\";i:355199;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:13587;s:11:\"size_before\";i:120789;s:10:\"size_after\";i:107202;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2377;s:11:\"size_before\";i:19494;s:10:\"size_after\";i:17117;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:14929;s:11:\"size_before\";i:134534;s:10:\"size_after\";i:119605;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:20974;s:11:\"size_before\";i:193734;s:10:\"size_after\";i:172760;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:16867;s:11:\"size_before\";i:152303;s:10:\"size_after\";i:135436;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(6667,1170,'_elementor_template_type','wp-page'),(6668,1170,'_elementor_version','3.0.11'),(6669,1170,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a626a\",\"elType\":\"widget\",\"settings\":{\"eael_post_grid_columns\":\"eael-col-1\",\"show_load_more_text\":\"Load More\",\"eael_excerpt_length\":100,\"excerpt_expanison_indicator\":\"...\",\"eael_read_more_text\":\"Read More\",\"read_more_button_text\":\"Read More\",\"image_link_nofollow\":\"true\",\"title_link_nofollow\":\"true\",\"read_more_link_nofollow\":\"true\"},\"elements\":[],\"widgetType\":\"eael-post-grid\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5776,786,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.645170763222036924844360328279435634613037109375;s:5:\"bytes\";i:3625;s:11:\"size_before\";i:34053;s:10:\"size_after\";i:30428;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2390;s:11:\"size_before\";i:22215;s:10:\"size_after\";i:19825;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1235;s:11:\"size_before\";i:11838;s:10:\"size_after\";i:10603;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5785,618,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.4006417647623674582746389205567538738250732421875;s:5:\"bytes\";i:687796;s:11:\"size_before\";i:6613015;s:10:\"size_after\";i:5925219;s:4:\"time\";d:1.77000000000000046185277824406512081623077392578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.75;s:5:\"bytes\";i:6327;s:11:\"size_before\";i:58877;s:10:\"size_after\";i:52550;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:51507;s:11:\"size_before\";i:506793;s:10:\"size_after\";i:455286;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2520;s:11:\"size_before\";i:23742;s:10:\"size_after\";i:21222;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:63262;s:11:\"size_before\";i:620985;s:10:\"size_after\";i:557723;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:109094;s:11:\"size_before\";i:1036556;s:10:\"size_after\";i:927462;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:185288;s:11:\"size_before\";i:1753821;s:10:\"size_after\";i:1568533;s:4:\"time\";d:0.83999999999999996891375531049561686813831329345703125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2083;s:11:\"size_before\";i:18100;s:10:\"size_after\";i:16017;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:46439;s:11:\"size_before\";i:437930;s:10:\"size_after\";i:391491;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:7560;s:11:\"size_before\";i:80608;s:10:\"size_after\";i:73048;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:8297;s:11:\"size_before\";i:86582;s:10:\"size_after\";i:78285;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:13907;s:11:\"size_before\";i:141706;s:10:\"size_after\";i:127799;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:24142;s:11:\"size_before\";i:231840;s:10:\"size_after\";i:207698;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:57433;s:11:\"size_before\";i:546992;s:10:\"size_after\";i:489559;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:56445;s:11:\"size_before\";i:527138;s:10:\"size_after\";i:470693;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.75;s:5:\"bytes\";i:10070;s:11:\"size_before\";i:103293;s:10:\"size_after\";i:93223;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1743;s:11:\"size_before\";i:17228;s:10:\"size_after\";i:15485;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:15703;s:11:\"size_before\";i:157500;s:10:\"size_after\";i:141797;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13386;s:11:\"size_before\";i:133326;s:10:\"size_after\";i:119940;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:12590;s:11:\"size_before\";i:129998;s:10:\"size_after\";i:117408;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5784,621,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.1383841528848801516460298444144427776336669921875;s:5:\"bytes\";i:36847;s:11:\"size_before\";i:330811;s:10:\"size_after\";i:293964;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:5023;s:11:\"size_before\";i:42844;s:10:\"size_after\";i:37821;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1691;s:11:\"size_before\";i:14362;s:10:\"size_after\";i:12671;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1631;s:11:\"size_before\";i:14114;s:10:\"size_after\";i:12483;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4417;s:11:\"size_before\";i:41972;s:10:\"size_after\";i:37555;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5169;s:11:\"size_before\";i:47679;s:10:\"size_after\";i:42510;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4162;s:11:\"size_before\";i:46737;s:10:\"size_after\";i:42575;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6731;s:11:\"size_before\";i:55990;s:10:\"size_after\";i:49259;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1231;s:11:\"size_before\";i:11037;s:10:\"size_after\";i:9806;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:6792;s:11:\"size_before\";i:56076;s:10:\"size_after\";i:49284;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5797,119,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.96825575686356568638757380540482699871063232421875;s:5:\"bytes\";i:9900;s:11:\"size_before\";i:124243;s:10:\"size_after\";i:114343;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1349;s:11:\"size_before\";i:14893;s:10:\"size_after\";i:13544;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:1338;s:11:\"size_before\";i:14860;s:10:\"size_after\";i:13522;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2895;s:11:\"size_before\";i:40882;s:10:\"size_after\";i:37987;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:3163;s:11:\"size_before\";i:41442;s:10:\"size_after\";i:38279;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1155;s:11:\"size_before\";i:12166;s:10:\"size_after\";i:11011;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5798,121,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.0778000269946534928067194414325058460235595703125;s:5:\"bytes\";i:278441;s:11:\"size_before\";i:3067274;s:10:\"size_after\";i:2788833;s:4:\"time\";d:0.87000000000000021760371282653068192303180694580078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2717;s:11:\"size_before\";i:22722;s:10:\"size_after\";i:20005;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:8108;s:11:\"size_before\";i:69844;s:10:\"size_after\";i:61736;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:39980;s:11:\"size_before\";i:425367;s:10:\"size_after\";i:385387;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:52644;s:11:\"size_before\";i:557850;s:10:\"size_after\";i:505206;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2713;s:11:\"size_before\";i:21312;s:10:\"size_after\";i:18599;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:24850;s:11:\"size_before\";i:335917;s:10:\"size_after\";i:311067;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6974;s:11:\"size_before\";i:74041;s:10:\"size_after\";i:67067;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:7593;s:11:\"size_before\";i:78828;s:10:\"size_after\";i:71235;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:11510;s:11:\"size_before\";i:130748;s:10:\"size_after\";i:119238;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.75;s:5:\"bytes\";i:18551;s:11:\"size_before\";i:211994;s:10:\"size_after\";i:193443;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:34051;s:11:\"size_before\";i:415049;s:10:\"size_after\";i:380998;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:27956;s:11:\"size_before\";i:343552;s:10:\"size_after\";i:315596;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:10274;s:11:\"size_before\";i:96908;s:10:\"size_after\";i:86634;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1803;s:11:\"size_before\";i:15985;s:10:\"size_after\";i:14182;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:12369;s:11:\"size_before\";i:111855;s:10:\"size_after\";i:99486;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:16348;s:11:\"size_before\";i:155302;s:10:\"size_after\";i:138954;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5795,106,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.9640212944342056999857959453947842121124267578125;s:5:\"bytes\";i:64072;s:11:\"size_before\";i:535539;s:10:\"size_after\";i:471467;s:4:\"time\";d:0.269999999999999962252417162744677625596523284912109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2347;s:11:\"size_before\";i:22047;s:10:\"size_after\";i:19700;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:6617;s:11:\"size_before\";i:63002;s:10:\"size_after\";i:56385;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2204;s:11:\"size_before\";i:20186;s:10:\"size_after\";i:17982;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:7708;s:11:\"size_before\";i:72502;s:10:\"size_after\";i:64794;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8208;s:11:\"size_before\";i:76601;s:10:\"size_after\";i:68393;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:16880;s:11:\"size_before\";i:94183;s:10:\"size_after\";i:77303;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:9520;s:11:\"size_before\";i:88394;s:10:\"size_after\";i:78874;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1886;s:11:\"size_before\";i:17004;s:10:\"size_after\";i:15118;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8702;s:11:\"size_before\";i:81620;s:10:\"size_after\";i:72918;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5796,112,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1379971185931712085448452853597700595855712890625;s:5:\"bytes\";i:300473;s:11:\"size_before\";i:2963830;s:10:\"size_after\";i:2663357;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5;s:5:\"bytes\";i:2940;s:11:\"size_before\";i:25574;s:10:\"size_after\";i:22634;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:9713;s:11:\"size_before\";i:89316;s:10:\"size_after\";i:79603;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:44272;s:11:\"size_before\";i:452793;s:10:\"size_after\";i:408521;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22634;s:10:\"size_after\";i:22634;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:46038;s:11:\"size_before\";i:400557;s:10:\"size_after\";i:354519;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:9938;s:11:\"size_before\";i:95179;s:10:\"size_after\";i:85241;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:10807;s:11:\"size_before\";i:101762;s:10:\"size_after\";i:90955;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:17264;s:11:\"size_before\";i:169740;s:10:\"size_after\";i:152476;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:26126;s:11:\"size_before\";i:266380;s:10:\"size_after\";i:240254;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:52768;s:11:\"size_before\";i:488423;s:10:\"size_after\";i:435655;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:42949;s:11:\"size_before\";i:400270;s:10:\"size_after\";i:357321;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12582;s:11:\"size_before\";i:116972;s:10:\"size_after\";i:104390;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:12;s:5:\"bytes\";i:2317;s:11:\"size_before\";i:19312;s:10:\"size_after\";i:16995;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:104390;s:10:\"size_after\";i:104390;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:22759;s:11:\"size_before\";i:210528;s:10:\"size_after\";i:187769;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5794,56,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6741844;s:10:\"size_after\";i:6741844;s:4:\"time\";d:8.469999999999998863131622783839702606201171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40749;s:10:\"size_after\";i:40749;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:94027;s:10:\"size_after\";i:94027;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:528175;s:10:\"size_after\";i:528175;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:878637;s:10:\"size_after\";i:878637;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26157;s:10:\"size_after\";i:26157;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:975627;s:10:\"size_after\";i:975627;s:4:\"time\";d:0.770000000000000017763568394002504646778106689453125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:163342;s:10:\"size_after\";i:163342;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:169081;s:10:\"size_after\";i:169081;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:306190;s:10:\"size_after\";i:306190;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:528002;s:10:\"size_after\";i:528002;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1108102;s:10:\"size_after\";i:1108102;s:4:\"time\";d:1.1799999999999999378275106209912337362766265869140625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1006319;s:10:\"size_after\";i:1006319;s:4:\"time\";d:1.1599999999999999200639422269887290894985198974609375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:193007;s:10:\"size_after\";i:193007;s:4:\"time\";d:0.64000000000000001332267629550187848508358001708984375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30647;s:10:\"size_after\";i:30647;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:125372;s:10:\"size_after\";i:125372;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:568410;s:10:\"size_after\";i:568410;s:4:\"time\";d:2.029999999999999804600747665972448885440826416015625;}}}'),(5782,627,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.953020811639902376555255614221096038818359375;s:5:\"bytes\";i:77901;s:11:\"size_before\";i:782687;s:10:\"size_after\";i:704786;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5509;s:11:\"size_before\";i:57362;s:10:\"size_after\";i:51853;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1878;s:11:\"size_before\";i:18757;s:10:\"size_after\";i:16879;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1953;s:11:\"size_before\";i:18823;s:10:\"size_after\";i:16870;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.25;s:5:\"bytes\";i:5686;s:11:\"size_before\";i:61438;s:10:\"size_after\";i:55752;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6088;s:11:\"size_before\";i:65156;s:10:\"size_after\";i:59068;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:13265;s:11:\"size_before\";i:73965;s:10:\"size_after\";i:60700;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:8958;s:11:\"size_before\";i:111833;s:10:\"size_after\";i:102875;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6863;s:11:\"size_before\";i:74896;s:10:\"size_after\";i:68033;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1458;s:11:\"size_before\";i:14204;s:10:\"size_after\";i:12746;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7030;s:11:\"size_before\";i:74559;s:10:\"size_after\";i:67529;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:12409;s:11:\"size_before\";i:128096;s:10:\"size_after\";i:115687;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:6804;s:11:\"size_before\";i:83598;s:10:\"size_after\";i:76794;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5783,624,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9901750553057127035572193562984466552734375;s:5:\"bytes\";i:123645;s:11:\"size_before\";i:1237666;s:10:\"size_after\";i:1114021;s:4:\"time\";d:0.31999999999999995115018691649311222136020660400390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:6163;s:11:\"size_before\";i:57192;s:10:\"size_after\";i:51029;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2219;s:11:\"size_before\";i:18050;s:10:\"size_after\";i:15831;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15831;s:10:\"size_after\";i:15831;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:20731;s:11:\"size_before\";i:216724;s:10:\"size_after\";i:195993;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5992;s:11:\"size_before\";i:58170;s:10:\"size_after\";i:52178;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6511;s:11:\"size_before\";i:62495;s:10:\"size_after\";i:55984;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:9677;s:11:\"size_before\";i:98884;s:10:\"size_after\";i:89207;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:20967;s:11:\"size_before\";i:117327;s:10:\"size_after\";i:96360;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:20195;s:11:\"size_before\";i:219757;s:10:\"size_after\";i:199562;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7661;s:11:\"size_before\";i:73661;s:10:\"size_after\";i:66000;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1602;s:11:\"size_before\";i:13274;s:10:\"size_after\";i:11672;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66000;s:10:\"size_after\";i:66000;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12520;s:11:\"size_before\";i:127893;s:10:\"size_after\";i:115373;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:9407;s:11:\"size_before\";i:92408;s:10:\"size_after\";i:83001;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(5791,22,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.3246346555323587068642154918052256107330322265625;s:5:\"bytes\";i:1595;s:11:\"size_before\";i:19160;s:10:\"size_after\";i:17565;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:545;s:11:\"size_before\";i:6534;s:10:\"size_after\";i:5989;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:565;s:11:\"size_before\";i:6558;s:10:\"size_after\";i:5993;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:485;s:11:\"size_before\";i:6068;s:10:\"size_after\";i:5583;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5792,28,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4637260431745477973208835464902222156524658203125;s:5:\"bytes\";i:21458;s:11:\"size_before\";i:253529;s:10:\"size_after\";i:232071;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:15:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:545;s:11:\"size_before\";i:6492;s:10:\"size_after\";i:5947;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1610;s:11:\"size_before\";i:16989;s:10:\"size_after\";i:15379;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5947;s:10:\"size_after\";i:5947;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1952;s:11:\"size_before\";i:21459;s:10:\"size_after\";i:19507;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1866;s:11:\"size_before\";i:21418;s:10:\"size_after\";i:19552;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3237;s:11:\"size_before\";i:33504;s:10:\"size_after\";i:30267;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:3565;s:11:\"size_before\";i:36140;s:10:\"size_after\";i:32575;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1884;s:11:\"size_before\";i:20728;s:10:\"size_after\";i:18844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:521;s:11:\"size_before\";i:6044;s:10:\"size_after\";i:5523;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18844;s:10:\"size_after\";i:18844;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3266;s:11:\"size_before\";i:32722;s:10:\"size_after\";i:29456;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:13:\"site_icon-270\";O:8:\"stdClass\":5:{s:7:\"percent\";i:9;s:5:\"bytes\";i:1311;s:11:\"size_before\";i:14567;s:10:\"size_after\";i:13256;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:13:\"site_icon-192\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:845;s:11:\"size_before\";i:9168;s:10:\"size_after\";i:8323;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:13:\"site_icon-180\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:696;s:11:\"size_before\";i:8280;s:10:\"size_after\";i:7584;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"site_icon-32\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:160;s:11:\"size_before\";i:1227;s:10:\"size_after\";i:1067;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5793,38,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.14477764282062111078630550764501094818115234375;s:5:\"bytes\";i:313878;s:11:\"size_before\";i:3093986;s:10:\"size_after\";i:2780108;s:4:\"time\";d:0.680000000000000159872115546022541821002960205078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:3011;s:11:\"size_before\";i:25932;s:10:\"size_after\";i:22921;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:7128;s:11:\"size_before\";i:69622;s:10:\"size_after\";i:62494;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:49395;s:11:\"size_before\";i:459729;s:10:\"size_after\";i:410334;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:55946;s:11:\"size_before\";i:513187;s:10:\"size_after\";i:457241;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:2701;s:11:\"size_before\";i:22252;s:10:\"size_after\";i:19551;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:32543;s:11:\"size_before\";i:338324;s:10:\"size_after\";i:305781;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:7994;s:11:\"size_before\";i:81188;s:10:\"size_after\";i:73194;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:8588;s:11:\"size_before\";i:86527;s:10:\"size_after\";i:77939;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:14144;s:11:\"size_before\";i:136573;s:10:\"size_after\";i:122429;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:22795;s:11:\"size_before\";i:209975;s:10:\"size_after\";i:187180;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:38177;s:11:\"size_before\";i:411667;s:10:\"size_after\";i:373490;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.25;s:5:\"bytes\";i:31227;s:11:\"size_before\";i:337751;s:10:\"size_after\";i:306524;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:10321;s:11:\"size_before\";i:102965;s:10:\"size_after\";i:92644;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2243;s:11:\"size_before\";i:19001;s:10:\"size_after\";i:16758;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:12697;s:11:\"size_before\";i:128323;s:10:\"size_after\";i:115626;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:14968;s:11:\"size_before\";i:150970;s:10:\"size_after\";i:136002;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5790,21,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.377217849279784189775455160997807979583740234375;s:5:\"bytes\";i:86013;s:11:\"size_before\";i:694930;s:10:\"size_after\";i:608917;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:16:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:857;s:11:\"size_before\";i:7602;s:10:\"size_after\";i:6745;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1434;s:11:\"size_before\";i:13522;s:10:\"size_after\";i:12088;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5823;s:11:\"size_before\";i:46522;s:10:\"size_after\";i:40699;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7841;s:11:\"size_before\";i:65206;s:10:\"size_after\";i:57365;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:427;s:11:\"size_before\";i:4907;s:10:\"size_after\";i:4480;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:10450;s:11:\"size_before\";i:86680;s:10:\"size_after\";i:76230;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2742;s:11:\"size_before\";i:22670;s:10:\"size_after\";i:19928;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2612;s:11:\"size_before\";i:21362;s:10:\"size_after\";i:18750;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:4407;s:11:\"size_before\";i:35600;s:10:\"size_after\";i:31193;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:6485;s:11:\"size_before\";i:53026;s:10:\"size_after\";i:46541;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:11977;s:11:\"size_before\";i:91703;s:10:\"size_after\";i:79726;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:15239;s:11:\"size_before\";i:116117;s:10:\"size_after\";i:100878;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2523;s:11:\"size_before\";i:20583;s:10:\"size_after\";i:18060;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:682;s:11:\"size_before\";i:6607;s:10:\"size_after\";i:5925;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1907;s:11:\"size_before\";i:16732;s:10:\"size_after\";i:14825;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10607;s:11:\"size_before\";i:86091;s:10:\"size_after\";i:75484;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5488,998,'_elementor_controls_usage','a:8:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:8;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:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:3;s:5:\"align\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:5;s:14:\"caption_source\";i:3;s:7:\"link_to\";i:5;s:5:\"align\";i:3;s:13:\"open_lightbox\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(5788,609,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.9303974121049858325704917660914361476898193359375;s:5:\"bytes\";i:96063;s:11:\"size_before\";i:878861;s:10:\"size_after\";i:782798;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:8757;s:11:\"size_before\";i:75156;s:10:\"size_after\";i:66399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3265;s:11:\"size_before\";i:25623;s:10:\"size_after\";i:22358;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:3078;s:11:\"size_before\";i:24257;s:10:\"size_after\";i:21179;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:8290;s:11:\"size_before\";i:77203;s:10:\"size_after\";i:68913;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:9064;s:11:\"size_before\";i:82218;s:10:\"size_after\";i:73154;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:11308;s:11:\"size_before\";i:112178;s:10:\"size_after\";i:100870;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:14382;s:11:\"size_before\";i:142001;s:10:\"size_after\";i:127619;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:10955;s:11:\"size_before\";i:98324;s:10:\"size_after\";i:87369;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2424;s:11:\"size_before\";i:18992;s:10:\"size_after\";i:16568;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:11522;s:11:\"size_before\";i:102719;s:10:\"size_after\";i:91197;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:13018;s:11:\"size_before\";i:120190;s:10:\"size_after\";i:107172;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5789,605,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.5452653784111749502017119084484875202178955078125;s:5:\"bytes\";i:544687;s:11:\"size_before\";i:5165228;s:10:\"size_after\";i:4620541;s:4:\"time\";d:1.3900000000000003463895836830488406121730804443359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:19:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:4958;s:11:\"size_before\";i:52436;s:10:\"size_after\";i:47478;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:50554;s:11:\"size_before\";i:466223;s:10:\"size_after\";i:415669;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1484;s:11:\"size_before\";i:17080;s:10:\"size_after\";i:15596;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:29505;s:11:\"size_before\";i:275849;s:10:\"size_after\";i:246344;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:99110;s:11:\"size_before\";i:946399;s:10:\"size_after\";i:847289;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:170003;s:11:\"size_before\";i:1578802;s:10:\"size_after\";i:1408799;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1457;s:11:\"size_before\";i:16946;s:10:\"size_after\";i:15489;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:33110;s:11:\"size_before\";i:313514;s:10:\"size_after\";i:280404;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5347;s:11:\"size_before\";i:55745;s:10:\"size_after\";i:50398;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:5768;s:11:\"size_before\";i:59015;s:10:\"size_after\";i:53247;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10237;s:11:\"size_before\";i:99103;s:10:\"size_after\";i:88866;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:17434;s:11:\"size_before\";i:166207;s:10:\"size_after\";i:148773;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:40554;s:11:\"size_before\";i:382977;s:10:\"size_after\";i:342423;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:39507;s:11:\"size_before\";i:377338;s:10:\"size_after\";i:337831;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6718;s:11:\"size_before\";i:68796;s:10:\"size_after\";i:62078;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1100;s:11:\"size_before\";i:12664;s:10:\"size_after\";i:11564;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:6592;s:11:\"size_before\";i:68508;s:10:\"size_after\";i:61916;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12639;s:11:\"size_before\";i:121295;s:10:\"size_after\";i:108656;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:10:\"team-thumb\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8610;s:11:\"size_before\";i:86331;s:10:\"size_after\";i:77721;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5781,646,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4999485097472611272451104014180600643157958984375;s:5:\"bytes\";i:81714;s:11:\"size_before\";i:961347;s:10:\"size_after\";i:879633;s:4:\"time\";d:0.229999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5061;s:11:\"size_before\";i:57950;s:10:\"size_after\";i:52889;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2174;s:11:\"size_before\";i:21278;s:10:\"size_after\";i:19104;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1843;s:11:\"size_before\";i:17501;s:10:\"size_after\";i:15658;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:6721;s:11:\"size_before\";i:79170;s:10:\"size_after\";i:72449;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:6943;s:11:\"size_before\";i:82320;s:10:\"size_after\";i:75377;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11404;s:11:\"size_before\";i:138571;s:10:\"size_after\";i:127167;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:17002;s:11:\"size_before\";i:195658;s:10:\"size_after\";i:178656;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7343;s:11:\"size_before\";i:88718;s:10:\"size_after\";i:81375;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1774;s:11:\"size_before\";i:16705;s:10:\"size_after\";i:14931;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6332;s:11:\"size_before\";i:75293;s:10:\"size_after\";i:68961;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:15117;s:11:\"size_before\";i:188183;s:10:\"size_after\";i:173066;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5779,674,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.4783130293206117045201608561910688877105712890625;s:5:\"bytes\";i:225036;s:11:\"size_before\";i:1960532;s:10:\"size_after\";i:1735496;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:14:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:9794;s:11:\"size_before\";i:81942;s:10:\"size_after\";i:72148;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:13;s:5:\"bytes\";i:3525;s:11:\"size_before\";i:27118;s:10:\"size_after\";i:23593;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:3226;s:11:\"size_before\";i:24459;s:10:\"size_after\";i:21233;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:22:\"houzez-single-big-size\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:43263;s:11:\"size_before\";i:219141;s:10:\"size_after\";i:175878;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:10135;s:11:\"size_before\";i:91345;s:10:\"size_after\";i:81210;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:10958;s:11:\"size_before\";i:97112;s:10:\"size_after\";i:86154;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:15667;s:11:\"size_before\";i:151494;s:10:\"size_after\";i:135827;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:19183;s:11:\"size_before\";i:201845;s:10:\"size_after\";i:182662;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:24:\"houzez-imageSize1170_738\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:32919;s:11:\"size_before\";i:342395;s:10:\"size_after\";i:309476;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:25:\"houzez-prop_image1440_610\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:26898;s:11:\"size_before\";i:283984;s:10:\"size_after\";i:257086;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:13063;s:11:\"size_before\";i:114585;s:10:\"size_after\";i:101522;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2674;s:11:\"size_before\";i:20122;s:10:\"size_after\";i:17448;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:14439;s:11:\"size_before\";i:127702;s:10:\"size_after\";i:113263;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:17:\"houzez-toparea-v5\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:19292;s:11:\"size_before\";i:177288;s:10:\"size_after\";i:157996;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(5780,663,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.82893888940196802650461904704570770263671875;s:5:\"bytes\";i:113993;s:11:\"size_before\";i:963679;s:10:\"size_after\";i:849686;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:9268;s:11:\"size_before\";i:74859;s:10:\"size_after\";i:65591;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3453;s:11:\"size_before\";i:26702;s:10:\"size_after\";i:23249;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"post-thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:2736;s:11:\"size_before\";i:21412;s:10:\"size_after\";i:18676;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:27:\"houzez-property-thumb-image\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:12003;s:11:\"size_before\";i:100538;s:10:\"size_after\";i:88535;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-thumb-image-v2\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12782;s:11:\"size_before\";i:106135;s:10:\"size_after\";i:93353;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-image570_340\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:19223;s:11:\"size_before\";i:171195;s:10:\"size_after\";i:151972;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:30:\"houzez-property-detail-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:26447;s:11:\"size_before\";i:229411;s:10:\"size_after\";i:202964;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-image350_350\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:13897;s:11:\"size_before\";i:116507;s:10:\"size_after\";i:102610;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:18:\"houzez-widget-prop\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2702;s:11:\"size_before\";i:20405;s:10:\"size_after\";i:17703;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11482;s:11:\"size_before\";i:96515;s:10:\"size_after\";i:85033;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5771,806,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.666942828842504553676917566917836666107177734375;s:5:\"bytes\";i:108587;s:11:\"size_before\";i:1252887;s:10:\"size_after\";i:1144300;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6632;s:11:\"size_before\";i:72476;s:10:\"size_after\";i:65844;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2369;s:11:\"size_before\";i:23482;s:10:\"size_after\";i:21113;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:15634;s:11:\"size_before\";i:195236;s:10:\"size_after\";i:179602;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:26239;s:11:\"size_before\";i:282634;s:10:\"size_after\";i:256395;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:15565;s:11:\"size_before\";i:191589;s:10:\"size_after\";i:176024;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:21126;s:11:\"size_before\";i:247201;s:10:\"size_after\";i:226075;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1213;s:11:\"size_before\";i:11998;s:10:\"size_after\";i:10785;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19809;s:11:\"size_before\";i:228271;s:10:\"size_after\";i:208462;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5772,799,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.6529889234817094489926603273488581180572509765625;s:5:\"bytes\";i:70497;s:11:\"size_before\";i:1059629;s:10:\"size_after\";i:989132;s:4:\"time\";d:0.210000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4277;s:11:\"size_before\";i:54613;s:10:\"size_after\";i:50336;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1703;s:11:\"size_before\";i:19172;s:10:\"size_after\";i:17469;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11030;s:11:\"size_before\";i:172234;s:10:\"size_after\";i:161204;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:16674;s:11:\"size_before\";i:247451;s:10:\"size_after\";i:230777;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:10739;s:11:\"size_before\";i:167962;s:10:\"size_after\";i:157223;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:12804;s:11:\"size_before\";i:197284;s:10:\"size_after\";i:184480;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:989;s:11:\"size_before\";i:10430;s:10:\"size_after\";i:9441;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:12281;s:11:\"size_before\";i:190483;s:10:\"size_after\";i:178202;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5773,796,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1836634;s:10:\"size_after\";i:1836634;s:4:\"time\";d:3.269999999999999573674358543939888477325439453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96227;s:10:\"size_after\";i:96227;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26762;s:10:\"size_after\";i:26762;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:315942;s:10:\"size_after\";i:315942;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:390658;s:10:\"size_after\";i:390658;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:315956;s:10:\"size_after\";i:315956;s:4:\"time\";d:0.90000000000000002220446049250313080847263336181640625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:375486;s:10:\"size_after\";i:375486;s:4:\"time\";d:0.729999999999999982236431605997495353221893310546875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15150;s:10:\"size_after\";i:15150;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:300453;s:10:\"size_after\";i:300453;s:4:\"time\";d:0.7399999999999999911182158029987476766109466552734375;}}}'),(5770,809,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.84633230913771040349047325435094535350799560546875;s:5:\"bytes\";i:57131;s:11:\"size_before\";i:834476;s:10:\"size_after\";i:777345;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3938;s:11:\"size_before\";i:50561;s:10:\"size_after\";i:46623;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1489;s:11:\"size_before\";i:17132;s:10:\"size_after\";i:15643;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9728;s:11:\"size_before\";i:135864;s:10:\"size_after\";i:126136;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10662;s:11:\"size_before\";i:183121;s:10:\"size_after\";i:172459;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:9459;s:11:\"size_before\";i:133173;s:10:\"size_after\";i:123714;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:11399;s:11:\"size_before\";i:167022;s:10:\"size_after\";i:155623;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:963;s:11:\"size_before\";i:9901;s:10:\"size_after\";i:8938;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:9493;s:11:\"size_before\";i:137702;s:10:\"size_after\";i:128209;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(6665,1170,'_wp_page_template','template/template-onepage.php'),(6666,1170,'_elementor_edit_mode','builder'),(5774,792,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.55323105532310545839891346986405551433563232421875;s:5:\"bytes\";i:70480;s:11:\"size_before\";i:1075500;s:10:\"size_after\";i:1005020;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:4452;s:11:\"size_before\";i:55633;s:10:\"size_after\";i:51181;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1812;s:11:\"size_before\";i:19095;s:10:\"size_after\";i:17283;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:10694;s:11:\"size_before\";i:172188;s:10:\"size_after\";i:161494;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:16173;s:11:\"size_before\";i:251468;s:10:\"size_after\";i:235295;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:10694;s:11:\"size_before\";i:168546;s:10:\"size_after\";i:157852;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:13093;s:11:\"size_before\";i:204429;s:10:\"size_after\";i:191336;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1043;s:11:\"size_before\";i:10327;s:10:\"size_after\";i:9284;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:12519;s:11:\"size_before\";i:193814;s:10:\"size_after\";i:181295;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5775,789,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.336283538709484020046147634275257587432861328125;s:5:\"bytes\";i:128779;s:11:\"size_before\";i:1379339;s:10:\"size_after\";i:1250560;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:4844;s:11:\"size_before\";i:48737;s:10:\"size_after\";i:43893;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1812;s:11:\"size_before\";i:17989;s:10:\"size_after\";i:16177;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:28022;s:11:\"size_before\";i:288321;s:10:\"size_after\";i:260299;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:21267;s:11:\"size_before\";i:262656;s:10:\"size_after\";i:241389;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12497;s:11:\"size_before\";i:131067;s:10:\"size_after\";i:118570;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:18275;s:11:\"size_before\";i:190428;s:10:\"size_after\";i:172153;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12273;s:11:\"size_before\";i:129010;s:10:\"size_after\";i:116737;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:14810;s:11:\"size_before\";i:154778;s:10:\"size_after\";i:139968;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1008;s:11:\"size_before\";i:9954;s:10:\"size_after\";i:8946;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13971;s:11:\"size_before\";i:146399;s:10:\"size_after\";i:132428;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5767,820,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3356156;s:10:\"size_after\";i:3356156;s:4:\"time\";d:2.720000000000000195399252334027551114559173583984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119825;s:10:\"size_after\";i:119825;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38248;s:10:\"size_after\";i:38248;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:684488;s:10:\"size_after\";i:684488;s:4:\"time\";d:0.810000000000000053290705182007513940334320068359375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:682279;s:10:\"size_after\";i:682279;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:312431;s:10:\"size_after\";i:312431;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:459053;s:10:\"size_after\";i:459053;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:305464;s:10:\"size_after\";i:305464;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:398850;s:10:\"size_after\";i:398850;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19283;s:10:\"size_after\";i:19283;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:336235;s:10:\"size_after\";i:336235;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(5768,817,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.3731900818656601614975443226285278797149658203125;s:5:\"bytes\";i:75578;s:11:\"size_before\";i:806321;s:10:\"size_after\";i:730743;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5335;s:11:\"size_before\";i:55851;s:10:\"size_after\";i:50516;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1953;s:11:\"size_before\";i:18664;s:10:\"size_after\";i:16711;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:12253;s:11:\"size_before\";i:126756;s:10:\"size_after\";i:114503;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:13524;s:11:\"size_before\";i:165511;s:10:\"size_after\";i:151987;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:11557;s:11:\"size_before\";i:123070;s:10:\"size_after\";i:111513;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:16782;s:11:\"size_before\";i:170121;s:10:\"size_after\";i:153339;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:953;s:11:\"size_before\";i:9791;s:10:\"size_after\";i:8838;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:13221;s:11:\"size_before\";i:136557;s:10:\"size_after\";i:123336;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5769,812,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.2893004978730715492929448373615741729736328125;s:5:\"bytes\";i:69528;s:11:\"size_before\";i:838768;s:10:\"size_after\";i:769240;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4310;s:11:\"size_before\";i:53591;s:10:\"size_after\";i:49281;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1299;s:11:\"size_before\";i:16136;s:10:\"size_after\";i:14837;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:11464;s:11:\"size_before\";i:133830;s:10:\"size_after\";i:122366;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:13762;s:11:\"size_before\";i:181304;s:10:\"size_after\";i:167542;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:11308;s:11:\"size_before\";i:131492;s:10:\"size_after\";i:120184;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:15458;s:11:\"size_before\";i:180550;s:10:\"size_after\";i:165092;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:762;s:11:\"size_before\";i:9161;s:10:\"size_after\";i:8399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:11165;s:11:\"size_before\";i:132704;s:10:\"size_after\";i:121539;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5766,823,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.48131501244398311456507144612260162830352783203125;s:5:\"bytes\";i:78697;s:11:\"size_before\";i:1051914;s:10:\"size_after\";i:973217;s:4:\"time\";d:0.33999999999999996891375531049561686813831329345703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5890;s:11:\"size_before\";i:66540;s:10:\"size_after\";i:60650;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2163;s:11:\"size_before\";i:21381;s:10:\"size_after\";i:19218;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:12665;s:11:\"size_before\";i:167019;s:10:\"size_after\";i:154354;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:15091;s:11:\"size_before\";i:232805;s:10:\"size_after\";i:217714;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:12338;s:11:\"size_before\";i:163874;s:10:\"size_after\";i:151536;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:16541;s:11:\"size_before\";i:222949;s:10:\"size_after\";i:206408;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1295;s:11:\"size_before\";i:11879;s:10:\"size_after\";i:10584;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:12714;s:11:\"size_before\";i:165467;s:10:\"size_after\";i:152753;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5765,826,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.6860604919950130664574317052029073238372802734375;s:5:\"bytes\";i:165716;s:11:\"size_before\";i:1710871;s:10:\"size_after\";i:1545155;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:9497;s:11:\"size_before\";i:82993;s:10:\"size_after\";i:73496;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3453;s:11:\"size_before\";i:27246;s:10:\"size_after\";i:23793;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:38379;s:11:\"size_before\";i:424418;s:10:\"size_after\";i:386039;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:19233;s:11:\"size_before\";i:195217;s:10:\"size_after\";i:175984;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:25990;s:11:\"size_before\";i:295477;s:10:\"size_after\";i:269487;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:18635;s:11:\"size_before\";i:191534;s:10:\"size_after\";i:172899;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:25985;s:11:\"size_before\";i:256657;s:10:\"size_after\";i:230672;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:13;s:5:\"bytes\";i:1824;s:11:\"size_before\";i:14029;s:10:\"size_after\";i:12205;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:22720;s:11:\"size_before\";i:223300;s:10:\"size_after\";i:200580;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5762,837,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.0273359367558807520026675774715840816497802734375;s:5:\"bytes\";i:40408;s:11:\"size_before\";i:335968;s:10:\"size_after\";i:295560;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:6639;s:11:\"size_before\";i:64076;s:10:\"size_after\";i:57437;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2408;s:11:\"size_before\";i:21821;s:10:\"size_after\";i:19413;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:11429;s:11:\"size_before\";i:124264;s:10:\"size_after\";i:112835;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:18563;s:11:\"size_before\";i:113683;s:10:\"size_after\";i:95120;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1369;s:11:\"size_before\";i:12124;s:10:\"size_after\";i:10755;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5763,832,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8038601328487278152579165180213749408721923828125;s:5:\"bytes\";i:3129;s:11:\"size_before\";i:31916;s:10:\"size_after\";i:28787;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2005;s:11:\"size_before\";i:20608;s:10:\"size_after\";i:18603;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1124;s:11:\"size_before\";i:11308;s:10:\"size_after\";i:10184;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5764,829,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.824206095599091526082702330313622951507568359375;s:5:\"bytes\";i:100104;s:11:\"size_before\";i:1134425;s:10:\"size_after\";i:1034321;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4687;s:11:\"size_before\";i:53985;s:10:\"size_after\";i:49298;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1690;s:11:\"size_before\";i:18049;s:10:\"size_after\";i:16359;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:23696;s:11:\"size_before\";i:264608;s:10:\"size_after\";i:240912;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:11765;s:11:\"size_before\";i:136732;s:10:\"size_after\";i:124967;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:18368;s:11:\"size_before\";i:207832;s:10:\"size_after\";i:189464;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:11621;s:11:\"size_before\";i:133604;s:10:\"size_after\";i:121983;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:16135;s:11:\"size_before\";i:184168;s:10:\"size_after\";i:168033;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1009;s:11:\"size_before\";i:10301;s:10:\"size_after\";i:9292;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:11133;s:11:\"size_before\";i:125146;s:10:\"size_after\";i:114013;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5759,846,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.1026463068880190121490159071981906890869140625;s:5:\"bytes\";i:177739;s:11:\"size_before\";i:1952608;s:10:\"size_after\";i:1774869;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:10:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5739;s:11:\"size_before\";i:59190;s:10:\"size_after\";i:53451;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.75;s:5:\"bytes\";i:2446;s:11:\"size_before\";i:22761;s:10:\"size_after\";i:20315;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:39871;s:11:\"size_before\";i:430626;s:10:\"size_after\";i:390755;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:33882;s:11:\"size_before\";i:387986;s:10:\"size_after\";i:354104;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:16652;s:11:\"size_before\";i:184368;s:10:\"size_after\";i:167716;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:24946;s:11:\"size_before\";i:273441;s:10:\"size_after\";i:248495;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:16254;s:11:\"size_before\";i:179111;s:10:\"size_after\";i:162857;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:17568;s:11:\"size_before\";i:193398;s:10:\"size_after\";i:175830;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1364;s:11:\"size_before\";i:12319;s:10:\"size_after\";i:10955;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:19017;s:11:\"size_before\";i:209408;s:10:\"size_after\";i:190391;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5760,843,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.9496855345911949797255147132091224193572998046875;s:5:\"bytes\";i:4142;s:11:\"size_before\";i:34662;s:10:\"size_after\";i:30520;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2644;s:11:\"size_before\";i:22406;s:10:\"size_after\";i:19762;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1498;s:11:\"size_before\";i:12256;s:10:\"size_after\";i:10758;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5761,840,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.6725467601697925346115880529396235942840576171875;s:5:\"bytes\";i:72335;s:11:\"size_before\";i:677767;s:10:\"size_after\";i:605432;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5107;s:11:\"size_before\";i:46055;s:10:\"size_after\";i:40948;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1471;s:11:\"size_before\";i:14241;s:10:\"size_after\";i:12770;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:12566;s:11:\"size_before\";i:113305;s:10:\"size_after\";i:100739;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9642;s:11:\"size_before\";i:119247;s:10:\"size_after\";i:109605;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:12716;s:11:\"size_before\";i:110700;s:10:\"size_after\";i:97984;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:16332;s:11:\"size_before\";i:144421;s:10:\"size_after\";i:128089;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:836;s:11:\"size_before\";i:8156;s:10:\"size_after\";i:7320;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:13665;s:11:\"size_before\";i:121642;s:10:\"size_after\";i:107977;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5758,851,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.0652665862995167600502099958248436450958251953125;s:5:\"bytes\";i:76270;s:11:\"size_before\";i:945660;s:10:\"size_after\";i:869390;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4853;s:11:\"size_before\";i:58559;s:10:\"size_after\";i:53706;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1801;s:11:\"size_before\";i:18985;s:10:\"size_after\";i:17184;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:12475;s:11:\"size_before\";i:153878;s:10:\"size_after\";i:141403;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:15251;s:11:\"size_before\";i:206133;s:10:\"size_after\";i:190882;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:12474;s:11:\"size_before\";i:151664;s:10:\"size_after\";i:139190;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15781;s:11:\"size_before\";i:192543;s:10:\"size_after\";i:176762;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1058;s:11:\"size_before\";i:10617;s:10:\"size_after\";i:9559;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:12577;s:11:\"size_before\";i:153281;s:10:\"size_after\";i:140704;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5757,906,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.227355895201387880888432846404612064361572265625;s:5:\"bytes\";i:508276;s:11:\"size_before\";i:3132217;s:10:\"size_after\";i:2623941;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7385;s:11:\"size_before\";i:51240;s:10:\"size_after\";i:43855;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:71698;s:11:\"size_before\";i:425235;s:10:\"size_after\";i:353537;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3047;s:11:\"size_before\";i:22440;s:10:\"size_after\";i:19393;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:43611;s:11:\"size_before\";i:264564;s:10:\"size_after\";i:220953;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:135979;s:11:\"size_before\";i:843324;s:10:\"size_after\";i:707345;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:81758;s:11:\"size_before\";i:512569;s:10:\"size_after\";i:430811;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:27613;s:11:\"size_before\";i:172964;s:10:\"size_after\";i:145351;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:43526;s:11:\"size_before\";i:263146;s:10:\"size_after\";i:219620;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:26798;s:11:\"size_before\";i:166560;s:10:\"size_after\";i:139762;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.690000000000001278976924368180334568023681640625;s:5:\"bytes\";i:45747;s:11:\"size_before\";i:274107;s:10:\"size_after\";i:228360;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1459;s:11:\"size_before\";i:10897;s:10:\"size_after\";i:9438;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:19655;s:11:\"size_before\";i:125171;s:10:\"size_after\";i:105516;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5756,910,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.507505651493691090081483707763254642486572265625;s:5:\"bytes\";i:1036392;s:11:\"size_before\";i:5599847;s:10:\"size_after\";i:4563455;s:4:\"time\";d:0.98000000000000009325873406851314939558506011962890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:15077;s:11:\"size_before\";i:78426;s:10:\"size_after\";i:63349;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.629999999999999005240169935859739780426025390625;s:5:\"bytes\";i:104450;s:11:\"size_before\";i:560792;s:10:\"size_after\";i:456342;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:6616;s:11:\"size_before\";i:33436;s:10:\"size_after\";i:26820;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:65877;s:11:\"size_before\";i:347200;s:10:\"size_after\";i:281323;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:188189;s:11:\"size_before\";i:1026625;s:10:\"size_after\";i:838436;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:284400;s:11:\"size_before\";i:1580506;s:10:\"size_after\";i:1296106;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:110920;s:11:\"size_before\";i:608382;s:10:\"size_after\";i:497462;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:44851;s:11:\"size_before\";i:234530;s:10:\"size_after\";i:189679;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:67627;s:11:\"size_before\";i:354214;s:10:\"size_after\";i:286587;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:43530;s:11:\"size_before\";i:225906;s:10:\"size_after\";i:182376;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:68220;s:11:\"size_before\";i:360664;s:10:\"size_after\";i:292444;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:3101;s:11:\"size_before\";i:16886;s:10:\"size_after\";i:13785;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:33534;s:11:\"size_before\";i:172280;s:10:\"size_after\";i:138746;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5755,1009,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.090719298728117792052216827869415283203125;s:5:\"bytes\";i:385412;s:11:\"size_before\";i:1599836;s:10:\"size_after\";i:1214424;s:4:\"time\";d:8.5199999999999977973175191436894237995147705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5304;s:11:\"size_before\";i:19428;s:10:\"size_after\";i:14124;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:32323;s:11:\"size_before\";i:135419;s:10:\"size_after\";i:103096;s:4:\"time\";d:1.2199999999999999733546474089962430298328399658203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2278;s:11:\"size_before\";i:9942;s:10:\"size_after\";i:7664;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:20410;s:11:\"size_before\";i:85714;s:10:\"size_after\";i:65304;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:64922;s:11:\"size_before\";i:270827;s:10:\"size_after\";i:205905;s:4:\"time\";d:0.90000000000000002220446049250313080847263336181640625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:94660;s:11:\"size_before\";i:397193;s:10:\"size_after\";i:302533;s:4:\"time\";d:2.79999999999999982236431605997495353221893310546875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:14082;s:11:\"size_before\";i:72411;s:10:\"size_after\";i:58329;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:18295;s:11:\"size_before\";i:73744;s:10:\"size_after\";i:55449;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26590;s:11:\"size_before\";i:104057;s:10:\"size_after\";i:77467;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:17665;s:11:\"size_before\";i:71500;s:10:\"size_after\";i:53835;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:76675;s:11:\"size_before\";i:311831;s:10:\"size_after\";i:235156;s:4:\"time\";d:1.270000000000000017763568394002504646778106689453125;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1329;s:11:\"size_before\";i:5386;s:10:\"size_after\";i:4057;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:10879;s:11:\"size_before\";i:42384;s:10:\"size_after\";i:31505;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(5754,1010,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.152376978884177560757962055504322052001953125;s:5:\"bytes\";i:391574;s:11:\"size_before\";i:2157150;s:10:\"size_after\";i:1765576;s:4:\"time\";d:0.6500000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6961;s:11:\"size_before\";i:38867;s:10:\"size_after\";i:31906;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:56475;s:11:\"size_before\";i:304759;s:10:\"size_after\";i:248284;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:18;s:5:\"bytes\";i:2550;s:11:\"size_before\";i:14168;s:10:\"size_after\";i:11618;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:34514;s:11:\"size_before\";i:187536;s:10:\"size_after\";i:153022;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:106264;s:11:\"size_before\";i:586889;s:10:\"size_after\";i:480625;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:60659;s:11:\"size_before\";i:337366;s:10:\"size_after\";i:276707;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:20768;s:11:\"size_before\";i:116827;s:10:\"size_after\";i:96059;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:32426;s:11:\"size_before\";i:176459;s:10:\"size_after\";i:144033;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.559999999999998721023075631819665431976318359375;s:5:\"bytes\";i:20232;s:11:\"size_before\";i:115231;s:10:\"size_after\";i:94999;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:32719;s:11:\"size_before\";i:178834;s:10:\"size_after\";i:146115;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1573;s:11:\"size_before\";i:8492;s:10:\"size_after\";i:6919;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.9200000000000017053025658242404460906982421875;s:5:\"bytes\";i:16433;s:11:\"size_before\";i:91722;s:10:\"size_after\";i:75289;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(5752,1052,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.544380867605429585864840191788971424102783203125;s:5:\"bytes\";i:324102;s:11:\"size_before\";i:4295939;s:10:\"size_after\";i:3971837;s:4:\"time\";d:1.0700000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3667;s:11:\"size_before\";i:42660;s:10:\"size_after\";i:38993;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:29880;s:11:\"size_before\";i:408644;s:10:\"size_after\";i:378764;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1424;s:11:\"size_before\";i:16040;s:10:\"size_after\";i:14616;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26414;s:11:\"size_before\";i:360361;s:10:\"size_after\";i:333947;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:62866;s:11:\"size_before\";i:857229;s:10:\"size_after\";i:794363;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:109347;s:11:\"size_before\";i:1389098;s:10:\"size_after\";i:1279751;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:29837;s:11:\"size_before\";i:424874;s:10:\"size_after\";i:395037;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10053;s:11:\"size_before\";i:135299;s:10:\"size_after\";i:125246;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:15224;s:11:\"size_before\";i:213566;s:10:\"size_after\";i:198342;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:9860;s:11:\"size_before\";i:131669;s:10:\"size_after\";i:121809;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12058;s:11:\"size_before\";i:150187;s:10:\"size_after\";i:138129;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:835;s:11:\"size_before\";i:8950;s:10:\"size_after\";i:8115;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12637;s:11:\"size_before\";i:157362;s:10:\"size_after\";i:144725;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(6659,1169,'_elementor_version','3.0.11'),(6660,1169,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"},{\"id\":\"ab8da9f\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"ed7c23b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team Announcements\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28a626a\",\"elType\":\"widget\",\"settings\":{\"eael_post_grid_columns\":\"eael-col-1\",\"show_load_more_text\":\"Load More\",\"eael_excerpt_length\":100,\"excerpt_expanison_indicator\":\"...\",\"eael_read_more_text\":\"Read More\",\"read_more_button_text\":\"Read More\",\"image_link_nofollow\":\"true\",\"title_link_nofollow\":\"true\",\"read_more_link_nofollow\":\"true\"},\"elements\":[],\"widgetType\":\"eael-post-grid\"},{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No posts found.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"5\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a8a8cd\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"google\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"69b6bd0\"}],\"eael_event_google_api_key\":\"AIzaSyBIpz3ZEB2ZX4pZm8Y-5w38ldvjquqPF4k\",\"eael_event_calendar_id\":\"7ef245oj8vtl7t2705p7bjdhd0@group.calendar.google.com\",\"eael_google_calendar_end_date\":\"2022-01-01 23:45\",\"__globals__\":{\"eael_event_global_bg_color\":\"globals\\/colors?id=primary\",\"eael_event_global_text_color\":\"globals\\/colors?id=69ee5813\",\"eael_event_global_popup_ribbon_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"eael-event-calendar\"},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(5753,1013,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.135813285071488820676677278243005275726318359375;s:5:\"bytes\";i:157562;s:11:\"size_before\";i:1040988;s:10:\"size_after\";i:883426;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3916;s:11:\"size_before\";i:25101;s:10:\"size_after\";i:21185;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:14930;s:11:\"size_before\";i:111400;s:10:\"size_after\";i:96470;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2279;s:11:\"size_before\";i:14566;s:10:\"size_after\";i:12287;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16551;s:11:\"size_before\";i:113134;s:10:\"size_after\";i:96583;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19712;s:11:\"size_before\";i:141490;s:10:\"size_after\";i:121778;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:13452;s:11:\"size_before\";i:99713;s:10:\"size_after\";i:86261;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24810;s:11:\"size_before\";i:155729;s:10:\"size_after\";i:130919;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:16185;s:11:\"size_before\";i:103809;s:10:\"size_after\";i:87624;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:35564;s:11:\"size_before\";i:209335;s:10:\"size_after\";i:173771;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1282;s:11:\"size_before\";i:7911;s:10:\"size_after\";i:6629;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:8881;s:11:\"size_before\";i:58800;s:10:\"size_after\";i:49919;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5749,1057,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.544380867605429585864840191788971424102783203125;s:5:\"bytes\";i:324102;s:11:\"size_before\";i:4295939;s:10:\"size_after\";i:3971837;s:4:\"time\";d:1.20000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3667;s:11:\"size_before\";i:42660;s:10:\"size_after\";i:38993;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:29880;s:11:\"size_before\";i:408644;s:10:\"size_after\";i:378764;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1424;s:11:\"size_before\";i:16040;s:10:\"size_after\";i:14616;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:26414;s:11:\"size_before\";i:360361;s:10:\"size_after\";i:333947;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:62866;s:11:\"size_before\";i:857229;s:10:\"size_after\";i:794363;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:109347;s:11:\"size_before\";i:1389098;s:10:\"size_after\";i:1279751;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:29837;s:11:\"size_before\";i:424874;s:10:\"size_after\";i:395037;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10053;s:11:\"size_before\";i:135299;s:10:\"size_after\";i:125246;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:15224;s:11:\"size_before\";i:213566;s:10:\"size_after\";i:198342;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:9860;s:11:\"size_before\";i:131669;s:10:\"size_after\";i:121809;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12058;s:11:\"size_before\";i:150187;s:10:\"size_after\";i:138129;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:835;s:11:\"size_before\";i:8950;s:10:\"size_after\";i:8115;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:12637;s:11:\"size_before\";i:157362;s:10:\"size_after\";i:144725;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5750,1056,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.3326674548493624428147086291573941707611083984375;s:5:\"bytes\";i:10138;s:11:\"size_before\";i:98116;s:10:\"size_after\";i:87978;s:4:\"time\";d:0.0799999999999999877875467291232780553400516510009765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:5982;s:11:\"size_before\";i:60641;s:10:\"size_after\";i:54659;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2605;s:11:\"size_before\";i:24186;s:10:\"size_after\";i:21581;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1551;s:11:\"size_before\";i:13289;s:10:\"size_after\";i:11738;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5751,1055,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.0652665862995167600502099958248436450958251953125;s:5:\"bytes\";i:76270;s:11:\"size_before\";i:945660;s:10:\"size_after\";i:869390;s:4:\"time\";d:0.2400000000000000188737914186276611872017383575439453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4853;s:11:\"size_before\";i:58559;s:10:\"size_after\";i:53706;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1801;s:11:\"size_before\";i:18985;s:10:\"size_after\";i:17184;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:12475;s:11:\"size_before\";i:153878;s:10:\"size_after\";i:141403;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:15251;s:11:\"size_before\";i:206133;s:10:\"size_after\";i:190882;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:12474;s:11:\"size_before\";i:151664;s:10:\"size_after\";i:139190;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15781;s:11:\"size_before\";i:192543;s:10:\"size_after\";i:176762;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1058;s:11:\"size_before\";i:10617;s:10:\"size_after\";i:9559;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:12577;s:11:\"size_before\";i:153281;s:10:\"size_after\";i:140704;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5649,1114,'_wp_attached_file','2020/10/Draft-Authorization-Form.docx'),(5650,1115,'_wp_attached_file','2020/10/2020-Educational-Calendar.xlsx'),(5655,1,'_wp_desired_post_slug','hello-world'),(5656,1,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5657,1,'_wp_trash_meta_comments_status','a:5:{i:1;s:5:\"trash\";i:2;s:4:\"spam\";i:3;s:4:\"spam\";i:4;s:4:\"spam\";i:5;s:4:\"spam\";}'),(5658,1113,'_edit_lock','1602812972:1'),(5661,1113,'_wp_old_slug','fwd-news-notes'),(5662,1113,'_edit_last','1'),(5663,1113,'_primary_term_category','16'),(5664,1113,'slide_template',''),(5665,1113,'rs_page_bg_color',''),(5666,1113,'passster_activate_protection',NULL),(5667,1113,'passster_protection_type','password'),(5668,1113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5672,1113,'_wp_page_template','default'),(5671,1113,'_wp_old_date','2020-10-16'),(5748,1060,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4485654237159195645290310494601726531982421875;s:5:\"bytes\";i:444196;s:11:\"size_before\";i:5257650;s:10:\"size_after\";i:4813454;s:4:\"time\";d:1.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:5003;s:11:\"size_before\";i:49319;s:10:\"size_after\";i:44316;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:39603;s:11:\"size_before\";i:457507;s:10:\"size_after\";i:417904;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2269;s:11:\"size_before\";i:20741;s:10:\"size_after\";i:18472;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:43978;s:11:\"size_before\";i:515103;s:10:\"size_after\";i:471125;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:79154;s:11:\"size_before\";i:966362;s:10:\"size_after\";i:887208;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:129787;s:11:\"size_before\";i:1623744;s:10:\"size_after\";i:1493957;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:47059;s:11:\"size_before\";i:569093;s:10:\"size_after\";i:522034;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:17082;s:11:\"size_before\";i:182628;s:10:\"size_after\";i:165546;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:25669;s:11:\"size_before\";i:287428;s:10:\"size_after\";i:261759;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:16620;s:11:\"size_before\";i:177947;s:10:\"size_after\";i:161327;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:15842;s:11:\"size_before\";i:168990;s:10:\"size_after\";i:153148;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1243;s:11:\"size_before\";i:11267;s:10:\"size_after\";i:10024;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:20887;s:11:\"size_before\";i:227521;s:10:\"size_after\";i:206634;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5746,1080,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:45.4751254895129619626459316350519657135009765625;s:5:\"bytes\";i:623931;s:11:\"size_before\";i:1372027;s:10:\"size_after\";i:748096;s:4:\"time\";d:15.3799999999999954525264911353588104248046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3098;s:11:\"size_before\";i:7544;s:10:\"size_after\";i:4446;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:63643;s:11:\"size_before\";i:128778;s:10:\"size_after\";i:65135;s:4:\"time\";d:1.0300000000000000266453525910037569701671600341796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:454;s:11:\"size_before\";i:2027;s:10:\"size_after\";i:1573;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.49000000000000198951966012828052043914794921875;s:5:\"bytes\";i:18175;s:11:\"size_before\";i:41792;s:10:\"size_after\";i:23617;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:66608;s:11:\"size_before\";i:146592;s:10:\"size_after\";i:79984;s:4:\"time\";d:1.9299999999999999378275106209912337362766265869140625;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:257976;s:11:\"size_before\";i:535650;s:10:\"size_after\";i:277674;s:4:\"time\";d:5.42999999999999971578290569595992565155029296875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.0499999999999971578290569595992565155029296875;s:5:\"bytes\";i:76031;s:11:\"size_before\";i:185238;s:10:\"size_after\";i:109207;s:4:\"time\";d:2.5099999999999997868371792719699442386627197265625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.75;s:5:\"bytes\";i:15886;s:11:\"size_before\";i:42082;s:10:\"size_after\";i:26196;s:4:\"time\";d:0.85999999999999998667732370449812151491641998291015625;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.86999999999999744204615126363933086395263671875;s:5:\"bytes\";i:30966;s:11:\"size_before\";i:79665;s:10:\"size_after\";i:48699;s:4:\"time\";d:0.939999999999999946709294817992486059665679931640625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.24000000000000198951966012828052043914794921875;s:5:\"bytes\";i:15969;s:11:\"size_before\";i:41761;s:10:\"size_after\";i:25792;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:65913;s:11:\"size_before\";i:147399;s:10:\"size_after\";i:81486;s:4:\"time\";d:1.6100000000000000976996261670137755572795867919921875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:205;s:11:\"size_before\";i:842;s:10:\"size_after\";i:637;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:71.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:9007;s:11:\"size_before\";i:12657;s:10:\"size_after\";i:3650;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(6656,1169,'_wp_page_template','template/template-onepage.php'),(6657,1169,'_elementor_edit_mode','builder'),(6658,1169,'_elementor_template_type','wp-page'),(5747,1063,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.135813285071488820676677278243005275726318359375;s:5:\"bytes\";i:157562;s:11:\"size_before\";i:1040988;s:10:\"size_after\";i:883426;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3916;s:11:\"size_before\";i:25101;s:10:\"size_after\";i:21185;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:14930;s:11:\"size_before\";i:111400;s:10:\"size_after\";i:96470;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2279;s:11:\"size_before\";i:14566;s:10:\"size_after\";i:12287;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:16551;s:11:\"size_before\";i:113134;s:10:\"size_after\";i:96583;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:19712;s:11:\"size_before\";i:141490;s:10:\"size_after\";i:121778;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:13452;s:11:\"size_before\";i:99713;s:10:\"size_after\";i:86261;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:24810;s:11:\"size_before\";i:155729;s:10:\"size_after\";i:130919;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:16185;s:11:\"size_before\";i:103809;s:10:\"size_after\";i:87624;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:35564;s:11:\"size_before\";i:209335;s:10:\"size_after\";i:173771;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1282;s:11:\"size_before\";i:7911;s:10:\"size_after\";i:6629;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:8881;s:11:\"size_before\";i:58800;s:10:\"size_after\";i:49919;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5745,1122,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.1497431265933482080754401977173984050750732421875;s:5:\"bytes\";i:421659;s:11:\"size_before\";i:4154381;s:10:\"size_after\";i:3732722;s:4:\"time\";d:0.94000000000000005773159728050814010202884674072265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:12;s:5:\"bytes\";i:7896;s:11:\"size_before\";i:65798;s:10:\"size_after\";i:57902;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:55152;s:11:\"size_before\";i:549725;s:10:\"size_after\";i:494573;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3261;s:11:\"size_before\";i:26909;s:10:\"size_after\";i:23648;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:35480;s:11:\"size_before\";i:336996;s:10:\"size_after\";i:301516;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:100759;s:11:\"size_before\";i:1048633;s:10:\"size_after\";i:947874;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:67563;s:11:\"size_before\";i:691140;s:10:\"size_after\";i:623577;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:24978;s:11:\"size_before\";i:232795;s:10:\"size_after\";i:207817;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:36648;s:11:\"size_before\";i:356382;s:10:\"size_after\";i:319734;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:24607;s:11:\"size_before\";i:227902;s:10:\"size_after\";i:203295;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:45320;s:11:\"size_before\";i:443833;s:10:\"size_after\";i:398513;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2080;s:11:\"size_before\";i:15141;s:10:\"size_after\";i:13061;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:17915;s:11:\"size_before\";i:159127;s:10:\"size_after\";i:141212;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5743,1124,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.065411958867588992916353163309395313262939453125;s:5:\"bytes\";i:30495;s:11:\"size_before\";i:378096;s:10:\"size_after\";i:347601;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3576;s:11:\"size_before\";i:50361;s:10:\"size_after\";i:46785;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1369;s:11:\"size_before\";i:16373;s:10:\"size_after\";i:15004;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:7966;s:11:\"size_before\";i:97033;s:10:\"size_after\";i:89067;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:7391;s:11:\"size_before\";i:93990;s:10:\"size_after\";i:86599;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:897;s:11:\"size_before\";i:9293;s:10:\"size_after\";i:8396;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:9296;s:11:\"size_before\";i:111046;s:10:\"size_after\";i:101750;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5744,1123,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.246511748374739880773631739430129528045654296875;s:5:\"bytes\";i:249234;s:11:\"size_before\";i:2432379;s:10:\"size_after\";i:2183145;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6346;s:11:\"size_before\";i:62863;s:10:\"size_after\";i:56517;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:54601;s:11:\"size_before\";i:532725;s:10:\"size_after\";i:478124;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:2061;s:11:\"size_before\";i:20113;s:10:\"size_after\";i:18052;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:33515;s:11:\"size_before\";i:329598;s:10:\"size_after\";i:296083;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:51034;s:11:\"size_before\";i:489744;s:10:\"size_after\";i:438710;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:17605;s:11:\"size_before\";i:172186;s:10:\"size_after\";i:154581;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:26478;s:11:\"size_before\";i:263221;s:10:\"size_after\";i:236743;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:17370;s:11:\"size_before\";i:168779;s:10:\"size_after\";i:151409;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:23168;s:11:\"size_before\";i:228621;s:10:\"size_after\";i:205453;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1206;s:11:\"size_before\";i:11606;s:10:\"size_after\";i:10400;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:15850;s:11:\"size_before\";i:152923;s:10:\"size_after\";i:137073;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5742,1125,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.1215870652998969347891033976338803768157958984375;s:5:\"bytes\";i:89028;s:11:\"size_before\";i:678485;s:10:\"size_after\";i:589457;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:8196;s:11:\"size_before\";i:67083;s:10:\"size_after\";i:58887;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3237;s:11:\"size_before\";i:26807;s:10:\"size_after\";i:23570;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:23434;s:11:\"size_before\";i:215696;s:10:\"size_after\";i:192262;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:35651;s:11:\"size_before\";i:202142;s:10:\"size_after\";i:166491;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2078;s:11:\"size_before\";i:15133;s:10:\"size_after\";i:13055;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:16432;s:11:\"size_before\";i:151624;s:10:\"size_after\";i:135192;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5711,1122,'_wp_attached_file','2020/10/IMG_3402.jpg'),(5712,1122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:20:\"2020/10/IMG_3402.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3402-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3402-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3402-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:20:\"IMG_3402-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"IMG_3402-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"IMG_3402-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"IMG_3402-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"IMG_3402-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"IMG_3402-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"IMG_3402-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"IMG_3402-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"IMG_3402-496x331.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:331;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:\"1602007603\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5713,1123,'_wp_attached_file','2020/10/IMG_3399.jpg'),(5714,1123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1274;s:6:\"height\";i:1227;s:4:\"file\";s:20:\"2020/10/IMG_3399.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3399-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3399-1024x986.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:986;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3399-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:20:\"IMG_3399-768x740.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:21:\"IMG_3399-1170x785.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:20:\"IMG_3399-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:20:\"IMG_3399-758x564.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:20:\"IMG_3399-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:20:\"IMG_3399-623x600.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:19:\"IMG_3399-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:20:\"IMG_3399-496x478.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:478;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:\"1602007322\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5715,1124,'_wp_attached_file','2020/10/AlanBusinesspic.jpg'),(5716,1124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2020/10/AlanBusinesspic.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"AlanBusinesspic-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"AlanBusinesspic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:27:\"AlanBusinesspic-500x444.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:27:\"AlanBusinesspic-500x438.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:26:\"AlanBusinesspic-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:27:\"AlanBusinesspic-496x496.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:496;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:{}}}'),(5717,1125,'_wp_attached_file','2020/09/Lantern-Albemarle-Team.jpg'),(5718,1125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2020/09/Lantern-Albemarle-Team.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-592x400.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-584x400.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:33:\"Lantern-Albemarle-Team-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:34:\"Lantern-Albemarle-Team-496x331.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:331;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:\"1602007603\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5719,759,'fave_agency_visible','0'),(5720,759,'_genesis_description','Lantern Realty and Development LLC Albemarle is made of of local agents who have been in the Real Estate business for years. We are made up of the familiar faces you are used to seeing around town, but have joined together to open an innovative Real Estate company that has a unique mission to treat our customers better with great customer service and allowing each agent to take control of their business. We all look forward to growing our business here in Albemarle, serving the surrounding counties and beyond and showing our community that we are here for them and serve their needs.'),(5721,604,'fave_agent_visible','0'),(5723,1127,'_wp_attached_file','2020/04/Mike_Fullerton-1.jpg'),(5724,1127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:674;s:4:\"file\";s:28:\"2020/04/Mike_Fullerton-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-592x444.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-700x564.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-584x438.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-623x600.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:27:\"Mike_Fullerton-1-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:28:\"Mike_Fullerton-1-496x478.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:478;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:\"1602007322\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5730,601,'fave_agent_visible','0'),(5732,22,'_edit_lock','1602979527:1'),(5733,1129,'_wp_attached_file','2020/10/Lantern-Realty-e1602979842115.png'),(5734,1129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:41:\"2020/10/Lantern-Realty-e1602979842115.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Lantern-Realty-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:25:\"Lantern-Realty-120x90.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;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:{}}}'),(5735,37,'fave_agent_visible','0'),(5737,1129,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:173;s:6:\"height\";i:173;s:4:\"file\";s:18:\"Lantern-Realty.png\";}}'),(5738,22,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:178;s:6:\"height\";i:180;s:4:\"file\";s:17:\"Facebook-Logo.jpg\";}}'),(7322,1242,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(10087,1748,'_wp_page_template','template/template-onepage.php'),(10088,1748,'_elementor_edit_mode','builder'),(10089,1748,'_elementor_template_type','wp-page'),(10090,1748,'_elementor_version','3.0.11'),(10091,1748,'_elementor_data','[{\"id\":\"2a1dec0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a330f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b38c96\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"0c7914f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Portal\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"size\":\"xxl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cd8c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Welcome to our Team Portal!<\\/h4><p>\\u00a0 \\u00a0 \\u00a0This is a tool for all agents to quickly and easily access company information. It is an ever-evolving tool, so please let us know how we can make improvements for everyone\'s benefit. Use the <a href=\\\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\\\">Website Change Request<\\/a> link to request updates.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8dad82f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"ce61376\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2cc1cd\",\"elType\":\"widget\",\"settings\":{\"icon_boxes\":[{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-book\",\"title\":\"Lantern Directory\",\"text\":\"Offices, Agents, Vendors and more. All the details you need, in one location.\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-directory\\/\"},\"_id\":\"94116c5\"},{\"icon_type\":\"custom_icon\",\"icon\":\"fa fa-black-tie\",\"title\":\"Lantern Branding\",\"text\":\"Download official Lantern branding for use on business cards, letterhead, and more!\",\"_id\":\"70db059\",\"custom_icon\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo.jpg\",\"id\":22},\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-branding\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-paperclip\",\"title\":\"Lantern Documents\",\"text\":\"Access to anything you may need to be successful as a Lantern Teammate.\",\"_id\":\"7cf1ec2\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/lantern-documents\\/\"}},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-code\",\"title\":\"Website Change Request\",\"text\":\"Request updates to the Lantern website. (Agent bios, photos, content ideas, etc.)\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/website-change-request\\/\"},\"_id\":\"094c2e8\"},{\"icon_type\":\"fontawesome_icon\",\"icon\":\"fa fa-address-card-o\",\"title\":\"New Agent Form\",\"text\":\"Submit your information to get started with Lantern.\",\"_id\":\"ea0261c\",\"read_more_text\":\"Click Here\",\"read_more_link\":{\"nofollow\":\"\",\"url\":\"https:\\/\\/lantern-realty.com\\/\\/new-agent-registration\\/\"}}],\"icon_primary_color\":\"#65B8DB\",\"icon_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_spacing_a\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"houzez_elementor_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7503b00\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"35c6d57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a39af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63ea529\",\"elType\":\"widget\",\"settings\":{\"title\":\"Most Recent Team Announcement\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b18f921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd646f3\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8bac1ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"c9f730a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a6b8032\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"title_link\":\"\",\"class\":\"\",\"before_posts\":\"\",\"after_posts\":\"\",\"custom_empty\":\"No recent announcements.\",\"template\":\"standard\",\"template_custom\":\"\",\"number\":\"1\",\"show_title\":\"on\",\"show_date\":\"on\",\"date_format\":\"F j, Y g:i a\",\"show_author\":\"on\",\"excerpt_length\":\"10\",\"show_content\":\"on\",\"excerpt_readmore\":\"Read more \\u2192\",\"show_thumbnail\":\"on\",\"thumb_size\":\"thumbnail\",\"show_cats\":\"on\",\"custom_fields\":\"\",\"cats\":[\"16\"],\"types\":[\"post\"],\"sticky\":\"show\",\"orderby\":\"date\",\"meta_key\":\"\",\"order\":\"DESC\"},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"wp-widget-sticky-posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"72024fa\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[{\"id\":\"f250d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c07cef0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"See All Announcements\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/the-lantern-team\\/team-portal\\/team-announcements\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-bullhorn\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"305db13\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"40ce4d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Team Calendar\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"title_color\":\"#6EC1E4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e188879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Check here for upcoming team meetings, trainings, community service events, agent birthdays and more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"328b1d9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"c62f775\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fa3a22a\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1235\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"70d7f95\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[calendar id=\\\"1241\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a71ba3f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8854,1483,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5273016;s:10:\"size_after\";i:5273016;s:4:\"time\";d:6.25000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.65000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:1.479999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:1.189999999999999946709294817992486059665679931640625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.92000000000000003996802888650563545525074005126953125;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:659127;s:10:\"size_after\";i:659127;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}}}'),(7326,1244,'_wp_attached_file','2020/10/Sherri-Argabright-Head-Shoulder-Shot.jpg'),(7327,1244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1249;s:6:\"height\";i:1560;s:4:\"file\";s:48:\"2020/10/Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.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:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:1230;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:40:\"Sherri-Argabright-Head-Shoulder-Shot.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:620;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:{}}}'),(7328,1244,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.2601555041701200110537683940492570400238037109375;s:5:\"bytes\";i:7772;s:11:\"size_before\";i:2987444;s:10:\"size_after\";i:2979672;s:4:\"time\";d:2.310000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:12:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7772;s:11:\"size_before\";i:256078;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:248306;s:10:\"size_after\";i:248306;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}}}'),(7329,45,'fave_agency_visible','0'),(7330,1245,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7331,1245,'_edit_lock','1603068721:1'),(7332,1245,'_wp_page_template','template/template-onepage.php'),(7333,1245,'_edit_last','1'),(7334,1245,'fave_listing_page_content_area','0'),(7335,1245,'fave_prop_no','9'),(7336,1245,'fave_properties_sort','d_date'),(7337,1245,'fave_listings_tabs','disable'),(7338,1245,'fave_properties_min_beds','0'),(7339,1245,'fave_properties_min_baths','0'),(7340,1245,'fave_agency_orderby','None'),(7341,1245,'fave_agency_order','ASC'),(7342,1245,'fave_agent_orderby','None'),(7343,1245,'fave_agent_order','ASC'),(7344,1245,'fave_header_type','elementor'),(7345,1245,'fave_page_header_image_opacity','0.35'),(7346,1245,'fave_page_header_search','0'),(7347,1245,'fave_header_full_screen','0'),(7348,1245,'fave_adv_search_enable','global'),(7349,1245,'fave_adv_search','hide'),(7350,1245,'fave_adv_search_pos','under_menu'),(7351,1245,'fave_page_title','show'),(7352,1245,'fave_page_breadcrumb','show'),(7353,1245,'fave_page_sidebar','right_sidebar'),(7354,1245,'fave_page_background','yes'),(7355,1245,'fave_main_menu_trans','no'),(7356,1245,'slide_template',''),(7357,1245,'rs_page_bg_color',''),(7358,1245,'passster_activate_protection',NULL),(7359,1245,'passster_protection_type','password'),(7360,1245,'_wpb_vc_js_status','false'),(7361,1245,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7362,1245,'_elementor_edit_mode','builder'),(7363,1245,'_elementor_template_type','wp-page'),(7364,1245,'_elementor_version','3.0.11'),(7366,1245,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7367,1245,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7368,1247,'_wp_page_template','template/template-onepage.php'),(7369,1247,'_elementor_edit_mode','builder'),(7370,1247,'_elementor_template_type','wp-page'),(7371,1247,'_elementor_version','3.0.11'),(7373,1247,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7374,1247,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(7377,1248,'_wp_page_template','template/template-onepage.php'),(7378,1248,'_elementor_edit_mode','builder'),(7379,1248,'_elementor_template_type','wp-page'),(7380,1248,'_elementor_version','3.0.11'),(7381,1248,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7382,1248,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7386,1249,'_wp_page_template','template/template-onepage.php'),(7387,1249,'_elementor_edit_mode','builder'),(7388,1249,'_elementor_template_type','wp-page'),(7389,1249,'_elementor_version','3.0.11'),(7390,1249,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7391,1249,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7416,1252,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43a0b7e\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"},{\"id\":\"29b490a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Accordion #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"bd1883f\"},{\"tab_title\":\"Accordion #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"ed301cf\"}]},\"elements\":[],\"widgetType\":\"accordion\"},{\"id\":\"f2885c6\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"agency-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":false}],\"isInner\":false}]'),(7411,1252,'_wp_page_template','template/template-onepage.php'),(7412,1252,'_elementor_edit_mode','builder'),(7413,1252,'_elementor_template_type','wp-page'),(7414,1252,'_elementor_version','3.0.11'),(7415,1252,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7403,1251,'_wp_page_template','template/template-onepage.php'),(7404,1251,'_elementor_edit_mode','builder'),(7405,1251,'_elementor_template_type','wp-page'),(7406,1251,'_elementor_version','3.0.11'),(7407,1251,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7408,1251,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7440,1255,'_elementor_template_type','wp-page'),(7438,1255,'_wp_page_template','template/template-onepage.php'),(7439,1255,'_elementor_edit_mode','builder'),(7429,1254,'_wp_page_template','template/template-onepage.php'),(7430,1254,'_elementor_edit_mode','builder'),(7431,1254,'_elementor_template_type','wp-page'),(7432,1254,'_elementor_version','3.0.11'),(7420,1253,'_wp_page_template','template/template-onepage.php'),(7421,1253,'_elementor_edit_mode','builder'),(7422,1253,'_elementor_template_type','wp-page'),(7423,1253,'_elementor_version','3.0.11'),(7424,1253,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7425,1253,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"f94e049\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"039f1e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29b490a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Accordion #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"bd1883f\"},{\"tab_title\":\"Accordion #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"ed301cf\"}]},\"elements\":[],\"widgetType\":\"accordion\"},{\"id\":\"1a9f06d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"bcc5a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"43a0b7e\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"}],\"isInner\":true},{\"id\":\"9519646\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c782644\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"page-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7433,1254,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7434,1254,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e4b1a36\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"b3567d7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"}],\"isInner\":true},{\"id\":\"2674601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d489768\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"page-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7441,1255,'_elementor_version','3.0.11'),(7442,1255,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7443,1255,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"b3567d7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"}],\"isInner\":true},{\"id\":\"2674601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d489768\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"page-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7466,1258,'_elementor_edit_mode','builder'),(7467,1258,'_elementor_template_type','wp-page'),(7447,1256,'_wp_page_template','template/template-onepage.php'),(7448,1256,'_elementor_edit_mode','builder'),(7449,1256,'_elementor_template_type','wp-page'),(7450,1256,'_elementor_version','3.0.11'),(7451,1256,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7452,1256,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"b3567d7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Tab #1\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"1648424\"},{\"tab_title\":\"Tab #2\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"69f32c7\"}]},\"elements\":[],\"widgetType\":\"tabs\"}],\"isInner\":true},{\"id\":\"2674601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d489768\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"page-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7465,1258,'_wp_page_template','template/template-onepage.php'),(7456,1257,'_wp_page_template','template/template-onepage.php'),(7457,1257,'_elementor_edit_mode','builder'),(7458,1257,'_elementor_template_type','wp-page'),(7459,1257,'_elementor_version','3.0.11'),(7460,1257,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7461,1257,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true},{\"id\":\"2674601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d489768\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"agent-sidebar\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(8847,1481,'_wp_attached_file','2021/01/2021-Educational-Calendar.xlsx'),(8852,1483,'_wp_attached_file','2021/01/2456921357881720863.png'),(7468,1258,'_elementor_version','3.0.11'),(7469,1258,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7470,1258,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(9287,1598,'_edit_lock','1614127691:1'),(9682,101,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";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:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:8;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;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:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:14:\"agent_category\";i:7;s:7:\"orderby\";i:7;s:11:\"posts_limit\";i:6;s:7:\"columns\";i:6;}}}}}'),(8853,1483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:780;s:4:\"file\";s:31:\"2021/01/2456921357881720863.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:634;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:488;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:23:\"2456921357881720863.png\";s:5:\"width\";i:496;s:6:\"height\";i:610;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:{}}}'),(7474,1259,'_wp_page_template','template/template-onepage.php'),(7475,1259,'_elementor_edit_mode','builder'),(7476,1259,'_elementor_template_type','wp-page'),(7477,1259,'_elementor_version','3.0.11'),(7478,1259,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7479,1259,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(9288,1598,'_edit_last','1'),(9289,1598,'fave_agency_email','klawingrealtor@gmail.com'),(7482,1260,'_wp_page_template','template/template-onepage.php'),(7483,1260,'_elementor_edit_mode','builder'),(7484,1260,'_elementor_template_type','wp-page'),(7485,1260,'_elementor_version','3.0.11'),(7486,1260,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7487,1260,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3f370\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ihomefindermoreinfowidget\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7506,1263,'_wp_page_template','template/template-onepage.php'),(7507,1263,'_elementor_edit_mode','builder'),(7508,1263,'_elementor_template_type','wp-page'),(7509,1263,'_elementor_version','3.0.11'),(7510,1263,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7511,1263,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"title_text\":\"Valuation Request\",\"description_text\":\"\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7501,1262,'_elementor_version','3.0.11'),(7502,1262,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7503,1262,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d0d990b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ihomefindercontactformwidget\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7498,1262,'_wp_page_template','template/template-onepage.php'),(7499,1262,'_elementor_edit_mode','builder'),(7500,1262,'_elementor_template_type','wp-page'),(7515,1264,'_wp_page_template','template/template-onepage.php'),(7516,1264,'_elementor_edit_mode','builder'),(7517,1264,'_elementor_template_type','wp-page'),(7518,1264,'_elementor_version','3.0.11'),(7519,1264,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7520,1264,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"view\":\"framed\",\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7532,1266,'_wp_page_template','template/template-onepage.php'),(7524,1265,'_wp_page_template','template/template-onepage.php'),(7525,1265,'_elementor_edit_mode','builder'),(7526,1265,'_elementor_template_type','wp-page'),(7527,1265,'_elementor_version','3.0.11'),(7528,1265,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7529,1265,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"view\":\"framed\",\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7533,1266,'_elementor_edit_mode','builder'),(7534,1266,'_elementor_template_type','wp-page'),(7535,1266,'_elementor_version','3.0.11'),(7536,1266,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7537,1266,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7540,1267,'_wp_page_template','template/template-onepage.php'),(7541,1267,'_elementor_edit_mode','builder'),(7542,1267,'_elementor_template_type','wp-page'),(7543,1267,'_elementor_version','3.0.11'),(7544,1267,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7545,1267,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7598,1274,'_wp_page_template','template/template-onepage.php'),(7599,1274,'_elementor_edit_mode','builder'),(7600,1274,'_elementor_template_type','wp-page'),(7601,1274,'_elementor_version','3.0.11'),(7602,1274,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7591,1273,'_elementor_edit_mode','builder'),(7590,1273,'_wp_page_template','template/template-onepage.php'),(7582,1272,'_wp_page_template','template/template-onepage.php'),(7565,1270,'_wp_page_template','template/template-onepage.php'),(7566,1270,'_elementor_edit_mode','builder'),(7567,1270,'_elementor_template_type','wp-page'),(7568,1270,'_elementor_version','3.0.11'),(7569,1270,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7570,1270,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_background_color\":\"#005813\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7558,1269,'_elementor_edit_mode','builder'),(7559,1269,'_elementor_template_type','wp-page'),(7560,1269,'_elementor_version','3.0.11'),(7561,1269,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7562,1269,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7557,1269,'_wp_page_template','template/template-onepage.php'),(7592,1273,'_elementor_template_type','wp-page'),(7593,1273,'_elementor_version','3.0.11'),(7594,1273,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7595,1273,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#005813\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7586,1272,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7587,1272,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#005813\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_hover_background_color\":\"#005813\",\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"43e223f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Free Valuation Request\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#167000\",\"title_color\":\"#167000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"cf73643\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"title_text\":\"Local Market Report\",\"description_text\":\"\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"creative_button_effect\":\"eael-creative-button--rayen\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7583,1272,'_elementor_edit_mode','builder'),(7584,1272,'_elementor_template_type','wp-page'),(7585,1272,'_elementor_version','3.0.11'),(7603,1274,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#005813\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7606,1275,'_wp_page_template','template/template-onepage.php'),(7607,1275,'_elementor_edit_mode','builder'),(7608,1275,'_elementor_template_type','wp-page'),(7609,1275,'_elementor_version','3.0.11'),(7610,1275,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7611,1275,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#001358\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#001358\",\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_background_color\":\"#001358\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7615,1276,'_wp_page_template','template/template-onepage.php'),(7616,1276,'_elementor_edit_mode','builder'),(7617,1276,'_elementor_template_type','wp-page'),(7618,1276,'_elementor_version','3.0.11'),(7619,1276,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7620,1276,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7624,1277,'_wp_page_template','template/template-onepage.php'),(7625,1277,'_elementor_edit_mode','builder'),(7626,1277,'_elementor_template_type','wp-page'),(7627,1277,'_elementor_version','3.0.11'),(7628,1277,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7629,1277,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7631,1245,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;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:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(7635,1279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7636,1279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7637,1279,'_edit_lock','1653526622:1'),(7638,1279,'_wp_page_template','template/template-onepage.php'),(7639,1279,'_edit_last','1'),(7640,1279,'fave_listing_page_content_area','0'),(7641,1279,'fave_prop_no','9'),(7642,1279,'fave_properties_sort','d_date'),(7643,1279,'fave_listings_tabs','disable'),(7644,1279,'fave_properties_min_beds','0'),(7645,1279,'fave_properties_min_baths','0'),(7646,1279,'fave_agency_orderby','None'),(7647,1279,'fave_agency_order','ASC'),(7648,1279,'fave_agent_orderby','None'),(7649,1279,'fave_agent_order','ASC'),(7650,1279,'fave_header_type','elementor'),(7651,1279,'fave_page_header_image_opacity','0.35'),(7652,1279,'fave_page_header_search','0'),(7653,1279,'fave_header_full_screen','0'),(7654,1279,'fave_adv_search_enable','global'),(7655,1279,'fave_adv_search','hide'),(7656,1279,'fave_adv_search_pos','under_menu'),(7657,1279,'fave_page_title','show'),(7658,1279,'fave_page_breadcrumb','show'),(7659,1279,'fave_page_sidebar','right_sidebar'),(7660,1279,'fave_page_background','yes'),(7661,1279,'fave_main_menu_trans','no'),(7662,1279,'slide_template',''),(7663,1279,'rs_page_bg_color',''),(7664,1279,'passster_activate_protection',NULL),(7665,1279,'passster_protection_type','password'),(7666,1279,'_wpb_vc_js_status','false'),(7667,1279,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7668,1279,'_elementor_edit_mode','builder'),(7669,1279,'_elementor_template_type','wp-page'),(7670,1279,'_elementor_version','3.6.5'),(7671,1279,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7672,1279,'_elementor_data','[{\"id\":\"4976c9f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"71693c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"content_position\":\"center\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b54bd7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.61999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"fcfc70e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bc8d241\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"align\":\"center\",\"header_size\":\"h1\",\"title_color\":\"#001451\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":5,\"vertical\":0,\"blur\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_background_image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa15f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"35332db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c889827\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Albemarle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a4d1bf9\",\"link\":{\"url\":\"#albemarle\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c186e14\",\"text\":\"Asheville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#asheville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"1a7bb2f\",\"text\":\"Harrisburg\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#harrisburg\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kannapolis\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"638a47f\",\"link\":{\"url\":\"#kannapolis\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"2a5faea\",\"text\":\"Lexington\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#lexington\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"5e4291b\",\"text\":\"Mooreseville\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#mooresville\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4b9ab71\",\"text\":\"Raleigh\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"Raleigh\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Salisbury\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0e15654\",\"link\":{\"url\":\"#salisbury\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"aca5f8e\",\"text\":\"Tennessee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#tennessee\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"icon_align\":\"center\",\"text_color_hover\":\"#6EC1E4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#0201012E\",\"__globals__\":{\"text_color_hover\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"32ffdec\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"kannapolis\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"ca89aaa\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"fb48447\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"2e18fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"12b7bf8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Kannapolis.png\",\"id\":2590,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":47,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61c176b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"8afb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0bd8f1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Main Office\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\",\"size\":\"medium\",\"header_size\":\"h3\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48461e9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9dbdaa7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7b0e6d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6558cfa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"salisbury\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"36ca77c\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"f27d10a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"0e6068e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"37b05b9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Salisbury.png\",\"id\":2586,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"086b586\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5991bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3cc0e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f901ed6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"520311f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dca8fdf\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"harrisburg\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"7a55e6a\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1fda340\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"bc989dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2ec8111\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Harrisburg.png\",\"id\":2566,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d84cbc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"32f36f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c12f493\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4350 Main St Suite 215, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a4d6d4f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ff24a73\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7ef9ea2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"albemarle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"1f2edd9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"317693b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"83531d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"18b0495\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Albemarle.png\",\"id\":2594,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"14c8971\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"35f6c67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d7ad9a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"113 S. Second St, Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16a176\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"45ee1bd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a06815\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"mooresville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f7ae6b\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"723faba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"3cdfc02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a24e62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/05F1BB70-445B-4044-AACC-8382CE3C590E.png\",\"id\":1363,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"83b017c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e8ff5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fda7d9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ce23359\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9b60939\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b84ad9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"asheville\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"505f887\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5a4b127\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4a846bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"721842c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2021\\/02\\/Lantern-Asheville.png\",\"id\":1616,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e6e00db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"b90a805\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Asheville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-asheville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0c82d7e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"23 Mill Stone Drive, Asheville NC 28803\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(828) 772-0220\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"klawingrealtor@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"833274c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:8287720220\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ee899a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:klawingrealtor@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4299a38\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"lexington\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4a04da9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"5018904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"c429591\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1eefc51\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Lexington.png\",\"id\":2573,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"59e1c70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a16d09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Lexington\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-lexington\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"754b542\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 N State Street, Lexington NC 27293\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 754-7104\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"csloansellshomes@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5e71cba\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7047547104\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5cf930e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:csloansellshomes@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d476bcc\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"tennessee\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c04e877\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3e99762\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"4b23dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"29e7dcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Tennessee.png\",\"id\":2577,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b85f51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"96bc3c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Tennessee\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-tennessee\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"090a9e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"416 E. Elk Ave., Elizabethton, TN 37643\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 333-8085\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"ashleyferlauto@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e97c573\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803338085\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"824874c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:ashleyferlauto@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e0da957\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"raleigh\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"cee8e75\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"948fac9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"middle\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[{\"id\":\"d392ccb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#020101\",\"box_shadow_box_shadow_type\":\"yes\",\"padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a88461d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2022\\/04\\/Raleigh.png\",\"id\":2582,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"inherit\",\"height\":{\"unit\":\"vh\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"97fc43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"81e0637\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Raleigh\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-raleigh\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"none\",\"title_color\":\"#005A80\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"744990c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"4909 Unicon Drive, Ste 105, Wake Forest NC 27587\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(919) 426-1561\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"matt@carolinaeliterealtygroup.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7c745cd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9194261561\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5d714ca\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:matt@carolinaeliterealtygroup.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccb1dfe\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7683,1281,'_wp_page_template','template/template-onepage.php'),(7684,1281,'_elementor_edit_mode','builder'),(7685,1281,'_elementor_template_type','wp-page'),(7686,1281,'_elementor_version','3.0.11'),(7687,1281,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7688,1281,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7693,1282,'_wp_page_template','template/template-onepage.php'),(7694,1282,'_elementor_edit_mode','builder'),(7695,1282,'_elementor_template_type','wp-page'),(7696,1282,'_elementor_version','3.0.11'),(7697,1282,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7698,1282,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7675,1280,'_wp_page_template','template/template-onepage.php'),(7676,1280,'_elementor_edit_mode','builder'),(7677,1280,'_elementor_template_type','wp-page'),(7678,1280,'_elementor_version','3.0.11'),(7679,1280,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7680,1280,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7681,1280,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;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:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(7711,1284,'_wp_page_template','template/template-onepage.php'),(7712,1284,'_elementor_edit_mode','builder'),(7713,1284,'_elementor_template_type','wp-page'),(7702,1283,'_wp_page_template','template/template-onepage.php'),(7703,1283,'_elementor_edit_mode','builder'),(7704,1283,'_elementor_template_type','wp-page'),(7705,1283,'_elementor_version','3.0.11'),(7706,1283,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7707,1283,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0c670e6\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Profile\",\"align\":\"justify\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=69ee5813\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7714,1284,'_elementor_version','3.0.11'),(7715,1284,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7716,1284,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7720,1285,'_wp_page_template','template/template-onepage.php'),(7721,1285,'_elementor_edit_mode','builder'),(7722,1285,'_elementor_template_type','wp-page'),(7723,1285,'_elementor_version','3.0.11'),(7724,1285,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7725,1285,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7736,1287,'_wp_page_template','template/template-onepage.php'),(7728,1286,'_wp_page_template','template/template-onepage.php'),(7729,1286,'_elementor_edit_mode','builder'),(7730,1286,'_elementor_template_type','wp-page'),(7731,1286,'_elementor_version','3.0.11'),(7732,1286,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7733,1286,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7737,1287,'_elementor_edit_mode','builder'),(7738,1287,'_elementor_template_type','wp-page'),(7739,1287,'_elementor_version','3.0.11'),(7740,1287,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7741,1287,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"07d1b87\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"f2c969f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bad5db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\",\"_padding\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1303619\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"a2da5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c47cf2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4847865\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"a2ffa05\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7776,1292,'_wp_page_template','template/template-onepage.php'),(7753,1289,'_wp_page_template','template/template-onepage.php'),(7754,1289,'_elementor_edit_mode','builder'),(7755,1289,'_elementor_template_type','wp-page'),(7745,1288,'_wp_page_template','template/template-onepage.php'),(7746,1288,'_elementor_edit_mode','builder'),(7747,1288,'_elementor_template_type','wp-page'),(7748,1288,'_elementor_version','3.0.11'),(7749,1288,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7750,1288,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7756,1289,'_elementor_version','3.0.11'),(7757,1289,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7758,1289,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7760,1290,'_wp_page_template','template/template-onepage.php'),(7761,1290,'_elementor_edit_mode','builder'),(7762,1290,'_elementor_template_type','wp-page'),(7763,1290,'_elementor_version','3.0.11'),(7764,1290,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7765,1290,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7768,1291,'_wp_page_template','template/template-onepage.php'),(7769,1291,'_elementor_edit_mode','builder'),(7770,1291,'_elementor_template_type','wp-page'),(7771,1291,'_elementor_version','3.0.11'),(7772,1291,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7773,1291,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7777,1292,'_elementor_edit_mode','builder'),(7778,1292,'_elementor_template_type','wp-page'),(7779,1292,'_elementor_version','3.0.11'),(7780,1292,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7781,1292,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo-e1602979990537.jpg\",\"id\":22},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2018\\/08\\/Facebook-Logo-e1602979990537.jpg\",\"id\":22},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7790,1295,'_wp_page_template','template/template-onepage.php'),(7791,1295,'_elementor_edit_mode','builder'),(7792,1295,'_elementor_template_type','wp-page'),(7793,1295,'_elementor_version','3.0.11'),(7794,1295,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7795,1295,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(7789,1294,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.258366800535475338307378478930331766605377197265625;s:5:\"bytes\";i:3102;s:11:\"size_before\";i:246510;s:10:\"size_after\";i:243408;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.680000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:3102;s:11:\"size_before\";i:84238;s:10:\"size_after\";i:81136;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:81136;s:10:\"size_after\";i:81136;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:81136;s:10:\"size_after\";i:81136;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(7787,1294,'_wp_attached_file','2020/10/Lantern-Square.png'),(7788,1294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:345;s:4:\"file\";s:26:\"2020/10/Lantern-Square.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Lantern-Square.png\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Lantern-Square.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:18:\"Lantern-Square.png\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(7799,1296,'_wp_page_template','template/template-onepage.php'),(7800,1296,'_elementor_edit_mode','builder'),(7801,1296,'_elementor_template_type','wp-page'),(7802,1296,'_elementor_version','3.0.11'),(7803,1296,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7804,1296,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7807,1297,'_wp_page_template','template/template-onepage.php'),(7808,1297,'_elementor_edit_mode','builder'),(7809,1297,'_elementor_template_type','wp-page'),(7810,1297,'_elementor_version','3.0.11'),(7811,1297,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7812,1297,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7815,1298,'_wp_page_template','template/template-onepage.php'),(7816,1298,'_elementor_edit_mode','builder'),(7817,1298,'_elementor_template_type','wp-page'),(7818,1298,'_elementor_version','3.0.11'),(7819,1298,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7820,1298,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7824,1299,'_wp_page_template','template/template-onepage.php'),(7825,1299,'_elementor_edit_mode','builder'),(7826,1299,'_elementor_template_type','wp-page'),(7827,1299,'_elementor_version','3.0.11'),(7828,1299,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7829,1299,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8054,1311,'_wp_page_template','template/template-onepage.php'),(8055,1311,'_elementor_edit_mode','builder'),(8056,1311,'_elementor_template_type','wp-page'),(8057,1311,'_elementor_version','3.0.11'),(8058,1311,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8059,1311,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Offices\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e9395\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Kannapolis\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-kannapolis\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1262f3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9ba18a9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"663cdcd\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"1d9e99e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8448018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2193137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8cf9b45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f81d98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Salisbury\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-salisbury\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"700da72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"425bc8b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7db3649\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f54cf7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"727333f\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50fe934\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"77fc083\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5eb27f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ae8a54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0974d3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"95c6842\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Harrisburg\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-harrisburg\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0db2632\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2abba36\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"83c2a74\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"c782277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5e1fa\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3d918b9\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"c3aab2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7063df\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"528f641\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/IMG_3402.jpg\",\"id\":1122},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"87acf0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12137b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Albemarle\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-albemarle\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91070f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"118 East Main St., Albemarle, NC 28001\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(980) 318-4961\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"lrdalbemarle@gmail.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4e433f6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:9803184961\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0310494\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:lrdalbemarle@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"96509a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ac8837\",\"elType\":\"widget\",\"settings\":{\"address\":\"118 East Main St., Albemarle, NC 28001\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b9f6f94\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"94ec9bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a79f70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"564c4e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium\",\"align\":\"center\",\"link_to\":\"custom\",\"open_lightbox\":\"yes\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9222be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f496066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Mooresville\",\"link\":{\"url\":\"https:\\/\\/lantern-realty.com\\/lantern-offices\\/lantern-mooresville\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\",\"typography_text_decoration\":\"underline\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2379108\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"43cdd52\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7a52063\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a9745ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0f78c83\",\"elType\":\"widget\",\"settings\":{\"address\":\"106 Langtree Village Drive Suite 301, Mooresville, NC 28117\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a0a31f\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7833,1300,'_elementor_edit_mode','builder'),(7834,1300,'_elementor_template_type','wp-page'),(7835,1300,'_elementor_version','3.0.11'),(7836,1300,'_wp_page_template','template/template-agencies.php'),(7838,1301,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7839,1301,'_menu_item_type','post_type'),(7840,1301,'_menu_item_menu_item_parent','0'),(7841,1301,'_menu_item_object_id','1279'),(7842,1301,'_menu_item_object','page'),(7843,1301,'_menu_item_target',''),(7844,1301,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7845,1301,'_menu_item_xfn',''),(7846,1301,'_menu_item_url',''),(7853,1302,'fave_listing_page_content_area','0'),(7854,1302,'fave_prop_no','9'),(7855,1302,'fave_properties_sort','d_date'),(7856,1302,'fave_listings_tabs','disable'),(7857,1302,'fave_properties_min_beds','0'),(7858,1302,'fave_properties_min_baths','0'),(7859,1302,'fave_agency_orderby','None'),(7860,1302,'fave_agency_order','ASC'),(7861,1302,'fave_agent_orderby','None'),(7862,1302,'fave_agent_order','ASC'),(7863,1302,'fave_header_type','elementor'),(7864,1302,'fave_page_header_image_opacity','0.35'),(7865,1302,'fave_page_header_search','0'),(7866,1302,'fave_header_full_screen','0'),(7867,1302,'fave_adv_search_enable','global'),(7868,1302,'fave_adv_search','hide'),(7869,1302,'fave_adv_search_pos','under_menu'),(7870,1302,'fave_page_title','show'),(7871,1302,'fave_page_breadcrumb','show'),(7872,1302,'fave_page_sidebar','right_sidebar'),(7873,1302,'fave_page_background','yes'),(7874,1302,'fave_main_menu_trans','no'),(7875,1302,'slide_template','default'),(7876,1302,'rs_page_bg_color','#ffffff'),(7877,1302,'passster_activate_protection',NULL),(7878,1302,'passster_protection_type','password'),(7879,1302,'_wpb_vc_js_status','false'),(7880,1302,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7881,1302,'_elementor_edit_mode','builder'),(7882,1302,'_elementor_template_type','wp-page'),(7883,1302,'_elementor_version','3.0.11'),(7884,1302,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7885,1302,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Salisbury Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Salisbury\\/815190\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8063,1312,'_wp_page_template','template/template-onepage.php'),(8064,1312,'_elementor_edit_mode','builder'),(8065,1312,'_elementor_template_type','wp-page'),(8066,1312,'_elementor_version','3.0.11'),(8067,1312,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8068,1312,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Salisbury Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Salisbury-Office.jpg\",\"id\":674},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"105 North Main Suite B, Salisbury, NC 28144\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"105 North Main Suite B, Salisbury, NC 28144\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Salisbury\\/815190\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Salisbury Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"salisbury\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8070,1302,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;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:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(7888,1303,'_wp_page_template','template/template-onepage.php'),(7889,1303,'_elementor_edit_mode','builder'),(7890,1303,'_elementor_template_type','wp-page'),(7891,1303,'_elementor_version','3.0.11'),(7892,1303,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7893,1303,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7894,1303,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;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:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(8818,1462,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.486172776250729576918985230804537422955036163330078125;s:5:\"bytes\";i:45432;s:11:\"size_before\";i:9344826;s:10:\"size_after\";i:9299394;s:4:\"time\";d:5.870000000000000994759830064140260219573974609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:13:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:45432;s:11:\"size_before\";i:760770;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.58999999999999996891375531049561686813831329345703125;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.6999999999999999555910790149937383830547332763671875;}s:14:\"houzez-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:19:\"houzez-item-image-1\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}s:19:\"houzez-item-image-4\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:19:\"houzez-item-image-6\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:23:\"houzez-variable-gallery\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:15:\"houzez-map-info\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.82999999999999996003197111349436454474925994873046875;}s:20:\"houzez-image_masonry\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:715338;s:10:\"size_after\";i:715338;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}}}'),(7896,1304,'_wp_page_template','template/template-onepage.php'),(7897,1304,'_elementor_edit_mode','builder'),(7898,1304,'_elementor_template_type','wp-page'),(7899,1304,'_elementor_version','3.0.11'),(7900,1304,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7901,1304,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Kannapolis Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/05\\/Lantern-Main-Office-Kannapolis.jpg\",\"id\":663},\"image_size\":\"medium_large\",\"align\":\"left\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"119 West Avenue, Kannapolis, NC 28081\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"Lantern Realty and Development, West Avenue, Kannapolis, NC\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kannapolis Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"kannapolis\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(7902,1304,'_elementor_controls_usage','a:11:{s:26:\"houzez-property-breadcrumb\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:2;s:4:\"size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;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:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;s:7:\"link_to\";i:1;s:13:\"open_lightbox\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:1:{s:11:\"text_indent\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:11:\"icon_indent\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}s:20:\"eael-creative-button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:36:\"eael_section_creative_button_content\";a:5:{s:20:\"creative_button_text\";i:3;s:30:\"creative_button_secondary_text\";i:3;s:24:\"creative_button_link_url\";i:3;s:29:\"eael_creative_button_icon_new\";i:3;s:32:\"eael_creative_button_icon_indent\";i:3;}}s:5:\"style\";a:1:{s:37:\"eael_section_creative_button_settings\";a:9:{s:37:\"eael_creative_button_background_color\";i:2;s:34:\"eael_creative_button_border_radius\";i:3;s:30:\"eael_creative_button_alignment\";i:3;s:26:\"eael_creative_button_width\";i:3;s:30:\"eael_creative_button_icon_size\";i:3;s:42:\"eael_creative_button_typography_typography\";i:1;s:43:\"eael_creative_button_typography_font_family\";i:1;s:43:\"eael_creative_button_typography_font_weight\";i:1;s:43:\"eael_creative_button_hover_background_color\";i:1;}}}}s:22:\"houzez_elementor_space\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:6:\"height\";i:1;}}}}s:23:\"houzez_elementor_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:4:{s:7:\"columns\";i:1;s:14:\"agent_category\";i:1;s:11:\"posts_limit\";i:1;s:7:\"orderby\";i:1;}}}}}'),(8816,1462,'_wp_attached_file','2020/12/AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg'),(8817,1462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2501;s:6:\"height\";i:2561;s:4:\"file\";s:57:\"2020/12/AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";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:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:786;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:1500;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:2000;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"houzez-gallery\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:785;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-1\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:592;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-4\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:758;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"houzez-item-image-6\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:584;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"houzez-variable-gallery\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:586;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"houzez-map-info\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"houzez-image_masonry\";a:4:{s:4:\"file\";s:49:\"AAC52701-4752-4138-B5F7-DDC3FF741E29_1_201_a.jpeg\";s:5:\"width\";i:496;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:15:\"LL2 PRODUCTIONS\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1600866050\";s:9:\"copyright\";s:15:\"LL2 PRODUCTIONS\";s:12:\"focal_length\";s:2:\"44\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7904,1305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7905,1305,'_edit_last','1'),(7906,1305,'_wp_page_template','template/template-onepage.php'),(7907,1305,'_edit_lock','1603069446:1'),(7908,1305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7909,1305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7910,1305,'fave_listing_page_content_area','0'),(7911,1305,'fave_prop_no','9'),(7912,1305,'fave_properties_sort','d_date'),(7913,1305,'fave_listings_tabs','disable'),(7914,1305,'fave_properties_min_beds','0'),(7915,1305,'fave_properties_min_baths','0'),(7916,1305,'fave_agency_orderby','None'),(7917,1305,'fave_agency_order','ASC'),(7918,1305,'fave_agent_orderby','None'),(7919,1305,'fave_agent_order','ASC'),(7920,1305,'fave_header_type','elementor'),(7921,1305,'fave_page_header_image_opacity','0.35'),(7922,1305,'fave_page_header_search','0'),(7923,1305,'fave_header_full_screen','0'),(7924,1305,'fave_adv_search_enable','global'),(7925,1305,'fave_adv_search','hide'),(7926,1305,'fave_adv_search_pos','under_menu'),(7927,1305,'fave_page_title','show'),(7928,1305,'fave_page_breadcrumb','show'),(7929,1305,'fave_page_sidebar','right_sidebar'),(7930,1305,'fave_page_background','yes'),(7931,1305,'fave_main_menu_trans','no'),(7932,1305,'slide_template',''),(7933,1305,'rs_page_bg_color',''),(7934,1305,'passster_activate_protection',''),(7935,1305,'passster_protection_type','password'),(7936,1305,'_wpb_vc_js_status','false'),(7937,1305,'_houzez_sidebar_meta','a:2:{s:16:\"specific_sidebar\";s:2:\"no\";s:16:\"selected_sidebar\";s:15:\"default-sidebar\";}'),(7938,1305,'_elementor_edit_mode','builder'),(7939,1305,'_elementor_template_type','wp-page'),(7940,1305,'_elementor_version','3.0.11'),(7941,1305,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7942,1305,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f2be06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lantern Realty  - Harrisburg Office\",\"size\":\"xl\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e5e7048\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"57d18c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46cb3ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/lantern-realty.com\\/wp-content\\/uploads\\/2020\\/10\\/Lantern-Square.png\",\"id\":1294},\"image_size\":\"medium_large\",\"align\":\"center\",\"link_to\":\"file\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d79139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d546bfd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"selected_icon\":{\"value\":\"fas fa-location-arrow\",\"library\":\"fa-solid\"},\"_id\":\"7182623\"},{\"text\":\"(704) 298-0087\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"93f6bc6\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"contact@lantern-realty.com\",\"selected_icon\":{\"value\":\"fas fa-at\",\"library\":\"fa-solid\"},\"_id\":\"17aa63e\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c59ecb0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call\",\"link\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_color\":\"#004274\",\"__globals__\":{\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9a8fa09\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Send Message\",\"link\":{\"url\":\"mailto:contact@lantern-realty.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\",\"icon_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8e42e46\",\"elType\":\"widget\",\"settings\":{\"address\":\"6477 Morehead Rd, Harrisburg, NC 28075\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58c66c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"759b6af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14b359a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"53ef50a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8da9cdd\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Valuation Request\",\"creative_button_secondary_text\":\"Valuation Request\",\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/valuation-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_icon_new\":{\"value\":\"fas fa-money-check-alt\",\"library\":\"fa-solid\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_background_color\":\"#004274\",\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"eael_creative_button_typography_typography\":\"custom\",\"eael_creative_button_typography_font_family\":\"Roboto\",\"eael_creative_button_typography_font_weight\":\"600\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"e808c55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6dde507\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Local Market Report\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-chart-bar\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"https:\\/\\/lantern-realty.com\\/market-report\\/Kannapolis-Concord\\/815186\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_hover_background_color\":\"#54595F\",\"__globals__\":{\"eael_creative_button_background_color\":\"globals\\/colors?id=primary\",\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true},{\"id\":\"143f672\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"40b371e\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"Contact an Agent\",\"creative_button_secondary_text\":\"\",\"eael_creative_button_icon_new\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"eael_creative_button_icon_indent\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"eael_creative_button_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_creative_button_alignment\":\"center\",\"eael_creative_button_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"eael_creative_button_icon_size\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"creative_button_link_url\":{\"url\":\"tel:7042980087\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_creative_button_background_color\":\"#004274\",\"__globals__\":{\"eael_creative_button_hover_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a51ca99\",\"elType\":\"widget\",\"settings\":{\"height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"houzez_elementor_space\"},{\"id\":\"3c974ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Harrisburg Office Agents\",\"size\":\"xl\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9244e1d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"990eb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f07caf1\",\"elType\":\"widget\",\"settings\":{\"columns\":\"4\",\"agent_category\":\"harrisburg\",\"posts_limit\":\"100\",\"orderby\":\"menu_order\"},\"elements\":[],\"widgetType\":\"houzez_elementor_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"62573fb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez_elementor_space\"}],\"isInner\":false}],\"isInner\":false}]'),(8072,1313,'_wp_page_template','template/template-onepage.php'),(8073,1313,'_elementor_edit_mode','builder'),(8074,1313,'_elementor_template_type','wp-page'),(8075,1313,'_elementor_version','3.0.11'),(8076,1313,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8077,1313,'_elementor_data','[{\"id\":\"ab02045\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8034fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ffa57\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"houzez-property-breadcrumb\"},{\"id\":\"6a0e375\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e35accc\",\"elType\":\"column\",